/* USAGE:  <script type="text/javascript" src="/inc/es_centerpopup.js"></script>  */
/* USAGE:  <a href="/dosomething.asp" onClick="NewWindow(this.href,'name','300','50','no');return false" class="someclass">delete</a>  */

var win = null;
function NewWindow(mypage,myname,w,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = ((screen.height-(screen.height-150))/2)-60;
settings =
'height='+(screen.height-150)+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings);
}
