function OpenWin(url, dWidth, dHeight) {
window.open(url,'', 'menubar = no,  toolbar  = no, scrollbars=no, left=0, top=0, fullscreen = no, width='+ dWidth +', height='+ dHeight +', resizable = no');
}

function OpenMod(url, dWidth, dHeight) {
  window.showModalDialog(url,"dialog","dialogWidth:" + dWidth + "px; dialogHeight:" + dHeight + "px; center:yes; scroll: no; status: no; help: no;");
  window.location.reload();
}

function winClose() {
	window.close(); 
}
