//显示新闻窗口
function view(hr_file)
{
targeturl=hr_file
newwin=window.open("","","scrollbars,menubar,toolbar,status")
if (document.all){
newwin.moveTo(0,0)
newwin.resizeTo(screen.width,screen.height-20)
}
newwin.location=targeturl
}


//公用open弹窗
function pubilc_open(src,width,height)
{
  window.open(src,"","width="+width+",height="+height+",top="+(screen.height-height)/2+",left="+(screen.width-width)/2+",scrollbars=yes")	   	   
}


//公用窗口
function pubilc_showModalDialog(src,width,height)
   {
	var ret=window.showModalDialog("close.html?"+src,ret,"dialogWidth="+width+"px;dialogHeight="+height+"px;center= yes;help=no;status=no;")
	if(ret!=undefined)
	{
				
	}
   }


