function OpenWindow(theURL,winName,features) {
	win = window.open(theURL,winName,features);
	win.focus();
}

function OpenWindow2(theURL,pop_w,pop_h) {
view = window.open(theURL,'popup','width='+pop_w+',height='+pop_h+',left=0,top=0,scrollbars=yes,resizable=yes');
//view = window.open('','popup','width=100,height=100,left=0,top=0,scrollbars=yes,resizable=yes');
view.window.resizeTo(pop_w,pop_h);	
//view = window.open(theURL,'popup','width='+pop_w+',height='+pop_h+',left=0,top=0,scrollbars=yes,resizable=yes');
view.window.focus(); 

}

function OpenGuidewin(URL) {
	win1 = window.open(URL,'guideWin','toolbar=0,menubar=0,scrollbars=1,width=360,height=450,top=0,left=0');
}

function OpenGuidewinL(URL) {
	win1 = window.open(URL,'guideWin','toolbar=0,menubar=0,scrollbars=1,width=520,height=450,top=0,left=0');
}

function openWin_Verisign(URL) {
	window.open(URL,'Verisign','toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
	self.name = "mainWin";
}

function OpenSelectWin(URL) {
	window.open(URL,'style',"toolbar=0,menubar=0,scrollbars=0,width=310,height=450");
}

