var rootFolder = "http://216.185.153.107/";

function timestamp() {
/* This is to get a pseudo-random number */
  var now=new Date(); //now
  return now.getSeconds()*1000+now.getMilliseconds();
}

function openCheckoutWindow(number) {
	/* NOTES
	- This is to be used from the paintings pages, in the gallery subfolder
	- Under IE, the window is opened without a frame. It is recommended to close it using top.window.close();*/

	var theURL = rootFolder+'detail.cfm?add='+number+'&random='+timestamp();
	if(window.CheckoutWindow && !window.CheckoutWindow.closed) { //Window exists
		//NB: href is location as string.
		if(window.CheckoutWindow.location.href.indexOf('detail.cfm') == -1 || number>0) window.CheckoutWindow.location=theURL;
		window.CheckoutWindow.focus();
	}
	else { //window does not exist
        	//window.CheckoutWindow = window.open('../detail.cfm?add='+number+'&random='+timestamp(),'checkout_window','scrollbars=yes,top=20,left=80,width=550,height=500,resizable=yes')
			window.CheckoutWindow = window.open(theURL,'checkout_window','fullscreen,scrollbars=yes,top=20,left=20,width=600,height=500,resizable=yes');
			//window.CheckoutWindow.blur()
    		//window.focus()       
    		window.CheckoutWindow.resizeTo(600,500)
    		window.CheckoutWindow.moveTo(20,20)
			
	}
        return false;
}


/*function openCheckoutWindow(number) {
	//window.name="totor";
	if(window.CheckoutWindow && !window.CheckoutWindow.closed) {					//window.CheckoutWindow.close();
		//alert(window.CheckoutWindow.document.form1.close.value);
	//window.CheckoutWindow.document.form1.close.value=1; //hidden param
	//alert(window.CheckoutWindow.document.form1.close.value);
	//window.CheckoutWindow.document.form1.submit(); //saves info, then closes win.
	//if(window.CheckoutWindow && !window.CheckoutWindow.closed) 										//window.CheckoutWindow.close();
	}
        window.CheckoutWindow = window.open('../detail.cfm?add='+number+'&random='+timestamp(),'checkout_window','scrollbars=yes,top=20,left=80,width=550,height=500,resizable=yes');
	window.CheckoutWindow.focus();
        return false;
}*/

/*function openWindow(url,width,height) {

	if(window.myWin) {window.myWin.close();}
	window.myWin=window.open(url,"always_the_same_window","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width="+width+",height="+height);
	return false;
}*/
