function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=580,height=225,screenX=150,screenY=150,top=150,left=150')
}
function popupWindowHeader(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=790,height=280,screenX=150,screenY=150,top=150,left=150')
}
function popupHelpWin(bkmrk) {
  var url = 'help.html#help'+bkmrk;  
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=570,height=520,screenX=150,screenY=150,top=100,left=230')
}
function popupCertificate(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=400px,height=400px,screenX=200,screenY=200,top=200,left=200')
}
function order_popupWindow(order_url) {	
	//////////////// OPEN FULL SCREEN POPUP WINDOW ////////////////////////
  	var win_width = screen.width; // Get the width of the screen
	var win_height = screen.height; // Get the height of the screen

	// Where to place the Window
	var left = win_width/3;
	var top = win_height/3;
	
	var wid = 400;
	var hig = 200;

	var features = 'width='+wid+',height='+hig
	features += ',top='+top+',left='+left+',screenX='+left+',screenY='+top;

	window.open(order_url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,'+features)
	//////////////// OPEN FULL SCREEN POPUP WINDOW ////////////////////////
}


function paymentStatus_popupWindow(payment_status_url) {	
	//////////////// OPEN FULL SCREEN POPUP WINDOW ////////////////////////
  	var win_width = screen.width; // Get the width of the screen
	var win_height = screen.height; // Get the height of the screen

	// Where to place the Window
	var left = win_width/3;
	var top = win_height/3;
	
	var wid = 400;
	var hig = 200;

	var features = 'width='+wid+',height='+hig
	features += ',top='+top+',left='+left+',screenX='+left+',screenY='+top;

	window.open(payment_status_url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,'+features)
	//////////////// OPEN FULL SCREEN POPUP WINDOW ////////////////////////
}


function orderHistoryDetails_popupWindow(status_url) {	
	//////////////// OPEN FULL SCREEN POPUP WINDOW ////////////////////////
  	var win_width = screen.width; // Get the width of the screen
	var win_height = screen.height; // Get the height of the screen

	// Where to place the Window
	var left = win_width/3;
	var top = win_height/3;
	
	var wid = 400;
	var hig = 200;

	var features = 'width='+wid+',height='+hig
	features += ',top='+top+',left='+left+',screenX='+left+',screenY='+top;

	window.open(status_url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,'+features)
	//////////////// OPEN FULL SCREEN POPUP WINDOW ////////////////////////
}

