// MHDY.com


// GLOBAL VARIABLES
// ------------------------------------------------------------------------------
var $d=document;
// ------------------------------------------------------------------------------



// POP UP WINDOW
// ------------------------------------------------------------------------------
var $centerIt,$fullscrn,$WVAR;
// ------------------------------------------------------------------------------

function newWin($PAGE,$PAGEW,$PAGEH,$HTML){	// v2.1 - Specs for a new window
	var $GOATR,$goH,$GONAME,$goW,$GOURL;

	$GOURL=$PAGE;					// New window's URL
	$GONAME="newWin";				// Name of the window

	//	Attributes for the window
	$GOATR = "height=" + $PAGEH;	// Required
	$GOATR += ",width=" + $PAGEW;	// Required
//	$GOATR += ",resizable";			// Optional: "comment out" unneed options
//	$GOATR += ",scrollbars";		//   "
//	$GOATR += ",directories";		//   "
//	$GOATR += ",status";			//   "
//	$GOATR += ",toolbar";			//   "
//	$GOATR += ",location";			//   "
//	$GOATR += ",menubar";			//   "


	if ($HTML==1) {
		$WVAR=window.open('',$GONAME,$GOATR);
		$WVAR.document.write('<html><head><style type="text/css" media="screen">@import url("script/master.css");</style></head><body><img src="'+$GOURL+'" width="'+$PAGEW+'" height="'+$PAGEH+'" /></body></html>');
		$WVAR.document.close;
	} else {
		$WVAR=window.open($GOURL,$GONAME,$GOATR);
	}

	$WVAR.focus();
}
