//弹出窗口
function openWindow(URL,Width,Height) { 
window.open(URL,'','width='+Width+',height='+Height+',resizable=1,scrollbars=0,status=no,toolbar=no,location=no,menu=no');
}

//弹出窗口，固定位置left=100,top=100
function openWindowS(URL,Width,Height) { 
window.open(URL,'','width='+Width+',height='+Height+',resizable=1,scrollbars=1,status=no,toolbar=no,location=no,menu=no,left=60,top=60');
}

//弹出窗口，固定位置left=100,top=100; 固定大小800;600;
function openWindowS2(URL)
{
	openWindowS(URL, 800, 600);
	//modalWin(URL,800,600);
}
function openWindowS3(URL)
{
	openWindowS(URL, 320, 280);
}
function openWindowS4(URL)
{
	openWindowS(URL, 1000, 728);
}


//弹出窗口，全屏
function openWindowL(URL)
{
	window.open(URL,'','width=screen.width,height=screen.height,scrollbars=1,status=no,toolbar=no,location=no,menu=no,resizable=1');
}

