
var iwidth=600;
var iheight=800;
window.name="HELPWINDOW";
if(document.all){
  window.resizeTo(iwidth, iheight);
  window.focus();
}
if(document.layers){
  window.outerWidth=iwidth;
  window.outerHeight=iheight;
  window.focus();
}

function OpenSubWindow(path, name, width, height) {
	var x = (screen.width - width) / 2;
	var y = (screen.height - height) / 2;
	var option = 'width=' + width + ',height=' + height + ',left=' + x + ',top=' + y +',scrollbars=yes';
	osw = window.open(path,name,option);
	osw.focus();
	return false;
}