// JavaScript Documentfunction openwin(viewpic) { var browserName=navigator.appName; var MainWindow = window.open (viewpic,"delilah","toolbar=no,location=no,left=200,top=200,width=641, height=460,menubar=no,scrollbars=no,resizeable=no,status=no"); 	if (browserName=="Microsoft Internet Explorer"){		MainWindow.location.href = viewpic;	}}// submit the form oForm into a new window named by it's target// if bCloseWindow then close the current window.function submitAndClose(oForm, bCloseWindow) {	if(bCloseWindow)		if (navigator.userAgent.indexOf("Firefox")!=-1){			oForm.target='';			return true;		}			if(navigator.appName.indexOf("Internet Explorer") != -1) { 		return true;	}			window.open(oForm.action, oForm.target);	document.paypal_form.target=oForm.target;	document.paypal_form.submit();	if(bCloseWindow)		window.close(); 	return true;}
