function open_ideaWinFunc(ref){
	var openName = "winIdea";
	var w = 600;
	var h= 500;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;

	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=no';
	win = window.open(ref,openName,winprops)
	return;
}

function open_itsearchWinFunc(ref){
	var openName = "winItsearch";
	var w = 600;
	var h= 500;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;

	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=no';
	win = window.open(ref,openName,winprops)
	return;
}

function pageModifyFunc(ref){
	var openName = "pageModifyWin";
	var w = 700;
	var h= 640;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;

	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=no,resizable=yes';
	win = window.open(ref,openName,winprops)
	return;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function printCenterFunc(ref){
	var openName = "pagePrintWin";
	var w = 660;
	var h= 500;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;

	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=no';
	win = window.open(ref,openName,winprops)
	return;
}

var toploc;
var leftloc;
var url; 

var screen_width = window.screen.width;
var screen_height = window.screen.height;

leftloc = screen_width/2 - 1023/2;
toploc = screen_height/2 - 720/2;

function na_open_window(url) 
{ 

var windo = eval('window.open("'+url+'","multibook","status=no,toolbar=no,resizable=no,scrollbars=no,menubar=no, width=1023, height=720,top='+toploc+', left='+leftloc+'")');
}
