function Pop(theUrl,WinName,width,height,scrollbar) {
// theUrl 	= The page
// width	= Width of the window
// height	= Height of the windows
// scroll	= Do You want the Scroll??? ][ Value = yes|no
//
// brought to you by []==ThoRŪ
//
	var x = screen.availWidth
	var y = screen.availHeight
	var spaceSx = (x - width)/2
	//var spaceUp = 0						// To Point PopUp top
	var spaceUp = (y - height)/2					// To point PopUp in the center

	winparams	= ""						// Start Params for Window
	winparams	= winparams + "scrollbars=" + scrollbar		// Scroll
	winparams 	= winparams + ",resizable=no"			// Resizable
	winparams 	= winparams + ",left=" + spaceSx		// Space From Left
	winparams 	= winparams + ",top=" + spaceUp			// Space From Top
	winparams 	= winparams + ",width=" + width			// Windowz Width
	winparams 	= winparams + ",height=" + height		// Windowz Height
	winparams 	= winparams + ",directory=no"			// The Tool Bars Menu
	winparams 	= winparams + ",status=no"			//
	winparams 	= winparams + ",location=no"			//
	winparams 	= winparams + ",toolbar=no"			// -------------------

	theNavigator	= navigator.userAgent.toLowerCase();
	//	Check if the window is already open
	if (window.ThoR) {
		if (	(theNavigator.indexOf("msie") > -1)	&& (theNavigator.indexOf("win") > -1)	)	{
			//	Close it if browser is IE and SysOp is Win
			ThoR.close();
		} else {
			//	If Mac, then resize only the window
			ThoR.resizeTo(width,height);
		}
		//	Ok, now open the new window
		ThoR	= window.open(theUrl,WinName,winparams);
	} else {
		//	No window
		ThoR	= window.open(theUrl,WinName,winparams);
	}	
	ThoR.focus();
}