<!--
// Open an window with Java Script...............................

function shownewwindow(URL){
var $the=URL;
//alert ("WINDOW = " + $the); return;
   // these all work fine but below is better because javas flaw..
   //window.open(URL);
   // remote=window.open(URL,'thewindow','toolbar=no,menubar=no,scrollbars=yes,location=no,height=500,width=500');
   // window.open("http://www.sellntell.com/show_scp.htm",'','toolbar=no,menubar=no,scrollbars=yes,location=no,height=500,width=500');

    window.open(URL,'','toolbar=no,menubar=no,scrollbars=yes,location=no,height=500,width=500');

   // window.open('d:/MyWebs/sntspedy/botwarnterms.htm','','toolbar=no,menubar=no,scrollbars=yes,location=no,height=500,width=500');
   // secondwindow=open('d:/MyWebs/sntspedy/botwarnterms.htm','','toolbar=no,menubar=no,scrollbars=yes,location=no,height=500,width=500');
   // open("https://ara.safe-orders.net/sellntell/cgi-bin/cart1.cgi?c");

   // due to flaw in javas - specifically naming the new window to opener will overcome earlier versions problem
   // remote=window.open('','thewindow','toolbar=no,menubar=no,scrollbars=yes,location=no,height=500,width=500');
   // remote.location.href = URL;
   // if (remote.opener==null) {remote.opener=window; }
  
}

var message="Error!"; // Put your message for the alert box between the quotes.

// Don't edit below!
/*
function click(e) {
if (document.all) {
	if (event.button == 2) {
		alert(message);
		return false;
	}
}
if (document.layers) {
		if (e.which == 3) {
			alert(message);
			return false;
		}
}
}

if (document.layers) {
		document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
*/


// End -->
// --> 


