//弹出窗口函数
function OpenNew(url)
{
	window.open (url,"_blank","status=no,resizable=0,toolbar=no,menubar=no,scrollbars=yes,width=595,height=421,left=20,top=20")
}
//可以定制弹出窗口大小的函数
function OpenNewWin(url,widthx,heightx)
{
	window.open (url,"_blank","status=no,resizable=0,toolbar=no,menubar=no,scrollbars=yes,width="+widthx+",height="+heightx+",left=20,top=20")
}
//可以定制弹出窗口大小的函数
function OpenNewWin2(url,widthx,heightx,leftx,topx)
{
	window.open (url,"_blank","status=no,resizable=0,help=no,toolbar=no,menubar=no,scrollbars=yes,width="+widthx+",height="+heightx+",left="+leftx+",top="+topx+"")
}