// JavaScript Document
function centerSubWin(url,name,l,w,h,x) {
  var _l  = (screen.width-w)/2;
  var t   = (screen.height-h)/2;
  var win = window.open("",name,"left="+_l+",top="+t+",width="+w+",height="+h);
  win.moveTo(_l,t);
  win.focus();
  win.location.href = url;
  return win;
}
function subWin1() {
  var w = centerSubWin("http://www.idens.com/product/proseedsp/demo/popup.html","NewWin",10,900,600,10)
}


function openSubWin(w,h,swurl)
{
window.open(swurl, "sbwin", "width="+w+",height="+h);
}


