<!--
/******************************************************************************
* nutz_popup.js                                                        *
*                                                                             *
* Copyright 2000,2001                                                         *
* Web address: http://www.mikewatkins.co.uk                                   *
* Last update: 22 Febuary, 2003.                                                 *
*                                                                             *
* Contains declarations of nutztattoo ' pop-up windows.                     *
*                                                                             *
******************************************************************************/

function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

function OpenWindow(sPage, sWindow, sWidth, sHeight, sTool)
{
	var winl = (screen.width - sWidth) / 2;
	var wint = (screen.height - sHeight) / 4;
	if (sTool == 1)
	{
	  toolstring = "yes"
	}
	else
	{
	  toolstring = "no"
	}
	MM_openBrWindow(sPage, sWindow,'menubar=no,location=no,toolbar='+toolstring+',scrollbars=no,width='+sWidth+',height='+sHeight+',top='+wint+',left='+winl);
}
//-->

