﻿
//打开一个模式窗口
function openDialog(url,width,height)
{ 
    //debugger;
    window.showModalDialog(url,null,"dialogWidth:"+width+"px;dialogheight:"+height+"px;center:1;scroll:yes;help:0;status:yes");
}
//打开一个模式窗口
function openMessage(obj)
{ 
    var r = window.showModalDialog(obj.href,null,"dialogWidth:460px;dialogheight:350px;center:1;scroll:yes;help:0;status:0");
    if( r != "" && r != null && r != "undefined" )
    {
       __doPostBack("LinkButton1","");
    }
    return false;
}

//打开一个新页面
function MyOpenAll(url,width,height)
{
 window.open(url,"plaa","width="+width+",height="+height+",top="+(screen.height-height)/2+", left="+(screen.width-width)/2+", toolbar=no, menubar=no, scrollbars=yes, resizable=yes,location=no, status=yes");
  

}

function MyOpenAd(url,width,height)
{
   window.open(url,"plaa2","width="+width+",height="+height+",top = 0, left = 0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no");
}

function MyOpenScrollbarsNO(url,width,height)
{
 window.open(url,"plaa","width="+width+",height="+height+",top="+(screen.height-height)/2+", left="+(screen.width-width)/2+", toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=yes");
  

}