
// This script opens 'jury'//
function juryPop(url,name,w,h){
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=yes'
window.open(url,name,settings)
}


// This script opens 'nominering'//
function nomPop(url,name,w,h){
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+',alwaysRaised=yes, scrollbars=yes'
window.open(url,name,settings)
}

// This script opens 'gallery'//
function openGallery(url){
window.open(url, "site", "width=600,height=800,menubar=no,resizable=no,titlebar=no,alwaysRaised=yes,status=no,scrollbars=no,top=50,left=50");
}

// This script opens 'bordsplan'//
function openBord(url){
window.open(url, "site", "width=700,height=407,menubar=no,resizable=no,titlebar=no,alwaysRaised=yes,status=no,scrollbars=no,top=100,left=100");
}



////this script is for the user help ////
function openHelpWindow(url){
helpWin = window.open(url, "site", "width=500,height=400,menubar=no,resizable=yes,titlebar=no,alwaysRaised=yes,status=no,scrollbars=yes,top=1,left=1"); helpWin.focus();
	}
//// end script user help ////
	

