
// JavaScript Document
// Checkout Pages

function openCheckOut(country, client, user){
	w=window.screen.width;
	h=window.screen.height;
	if(country=="International"){
		if(w==1024 && h==768)
			window.open("checkOut_International.cfm","", "width=1000px, height=700px, top=0px, left=0px, toolbar=no, scrollbars=yes, menubar=no, resizable=yes,status=yes");				
		else
			window.open("checkOut_International.cfm","", "width=780px, height=550px, top=5px, left=1px, toolbar=no, scrollbars=yes, menubar=no, resizable=yes,status=yes");				
	}else{
		if(user ==""){
			if(client=="PPR"){
				if(w==1024 && h==768)
					window.open("https://www.distributionaccess.com/new/checkOutPPR.cfm","", "width=1000px,height=700px,top=0px,left=0px,toolbar=no,scrollbars=yes,menubar=no, resizable=yes,status=yes");
				else
					window.open("https://www.distributionaccess.com/new/checkOutPPR.cfm","", "width=780px,height=550px,top=5px,left=1px,toolbar=no,scrollbars=yes,menubar=no,resizable=yes,status=yes");
			}else{
				if(w==1024 && h==768)
					window.open("https://www.distributionaccess.com/new/checkOutHome.cfm","", "width=1000px, height=700px, top=0px, left=0px, toolbar=no, scrollbars=yes, menubar=no, resizable=yes,status=yes");
				else
					window.open("https://www.distributionaccess.com/new/checkOutHome.cfm","", "width=780px, height=550px, top=5px, left=1px, toolbar=no, scrollbars=yes, menubar=no, resizable=yes,status=yes");
			}
		}else{
			if(client=="PPR"){
				if(w==1024 && h==768)
					window.open("https://www.distributionaccess.com/new/checkOutLoginPPR.cfm","", "width=1000px, height=700px, top=0px, left=0px, toolbar=no, scrollbars=yes, menubar=no, resizable=yes,status=yes");
				else
					window.open("https://www.distributionaccess.com/new/checkOutLoginPPR.cfm","", "width=780px, height=550px, top=5px, left=1px, toolbar=no, scrollbars=yes, menubar=no, resizable=yes,status=yes");
			}else{
				if(w==1024 && h==768)
					window.open("https://www.distributionaccess.com/new/checkOutLoginHome.cfm","", "width=1000px, height=700px, top=0px, left=0px, toolbar=no, scrollbars=yes, menubar=no, resizable=yes,status=yes");
				else
					window.open("https://www.distributionaccess.com/new/checkOutLoginHome.cfm","", "width=780px, height=550px, top=5px, left=1px, toolbar=no, scrollbars=yes, menubar=no, resizable=yes,status=yes");
			}
		}	
	}
}
