<!--
function popupadd(pprod,qty) {
	var url = '/checkout/addwindow.asp?pproduct_id=' + pprod + '&qty=' + qty;
	var win;
	var lefttop;
	
	//center of screen
	//lefttop='left='+(screen.width-310)/2+',top='+(screen.height-150)/2+',toolbars=0,scrollbars=0,location=0,statusbars=0,menubars=0,resizable=0,width=310,height=150';
	
	//default
	lefttop='toolbars=0,scrollbars=0,location=0,statusbars=0,menubars=0,resizable=0,width=350,height=215';
	
	win = window.open(url,'popup',lefttop);
	win.window.focus();
}

function popup(strURL) {
	var url = strURL;
	var win;
	var lefttop;
	
	//center of screen
	//lefttop='left='+(screen.width-310)/2+',top='+(screen.height-150)/2+',toolbars=0,scrollbars=0,location=0,statusbars=0,menubars=0,resizable=0,width=310,height=150';
	
	//default
	lefttop='toolbars=0,scrollbars=0,location=0,statusbars=0,menubars=0,resizable=0,width=325,height=240';
	
	win = window.open(url,'popup',lefttop);
	win.window.focus();
}

function popupdefined(strURL,strHeight,strWidth) {
	var url = strURL;
	var height = strHeight;
	var width = strWidth
	var win;
	var lefttop;
	
	//default
	lefttop='toolbars=0,scrollbars=0,location=0,statusbars=0,menubars=0,resizable=0,width='+width+',height='+height;
	
	win = window.open(url,'popup',lefttop);
	win.window.focus();
}

function clearInput(inputvalue){
	if (inputvalue.defaultValue==inputvalue.value)
		inputvalue.value = ""
}

function SweepPopUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=450,height=450');");
}


function PopUpDefinedScrolling(strURL,strHeight,strWidth) {

		var url = strURL;
		var height = strHeight;
		var width = strWidth
		var win;
		var lefttop;

		//default
		lefttop='toolbars=0,scrollbars=yes,location=0,statusbars=0,menubars=0,resizable=yes,width='+width+',height='+height;

		win = window.open(url,'popup',lefttop);
		win.window.focus();
}


//-->