

//------- Functions to open main module windows for four DROP projects----------------//

function openMainWindow(pageURL, title,w,h) {
	var left = (screen.width/2)-(w/2);
	var top = (screen.height/2)-((h/2)+30);
	var openMainWin = window.open (pageURL, title, 'toolbar=0, location=no, directories=no, status=no, menubar=0, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
	openMainWin.focus();

}


//---------------------------------------------------------------//


