function catalogsub(item,qty){
var f =document.myForm
	item=item.replace(/[&]/g,"@")		// change & char with char * because of link tp rctore
										// is use with a "get" not a "put" and the & has special meaning
	f.session.value+=item + '~' + qty + ';'
	alert("Issue # "+item+" has been added to your shopping cart.")
	f.submit()
}  
	
function popalert() {
window.open('/common/asp/pops/alert.asp','alert1','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=yes,width=510,height=500,left=60,top=30');
};

