// Open new window script                                                       
// HTML code is href="javascript:NewWindow('http://www.url.com','altwindow','500','575','no')"

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+','
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
}



function newWin(url) {
quizWin=window.open(url, "", "toolbar=no,directories=no,status=no,location=0,resizable=no,scrollbars=no,menubar=no,width=600,height=400,screenY=25,screenX=25,top=25,left=25");  

}	

// contact us popup script
function contactPop(url) {
quizWin=window.open(url, "", "toolbar=no,directories=no,status=no,location=0,resizable=yes,scrollbars=no,menubar=no,width=600,height=400,screenY=25,screenX=25,top=25,left=25");  

}

function openPopUp(url){
    window.open(url,"privacy","resizable=yes,width=340, height=170");
} 

// Leaving Privacy Popup Window
function openLeavingPopUp(url){
    window.open(url,"privacy","resizable=yes,width=410, height=270");
} 


//Function to set/reset url of link to popup.
function setPopupURL(linkId, linkTarget, targetValue) {
	document.getElementById(linkId).href = linkTarget;
	document.getElementById(linkId).target = targetValue;
}  

