<!--
/******************************************************************************
* salathai_popup.js                                                            *
*                                                                             *
* Copyright 2005                                                       *
* Web address: http://www.salathai.com                           *
* Last update: 28 June, 2005.                                                *
*                                                                             *
* Contains declarations of salathai 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,'status=no,menubar=no,location=no,toolbar='+toolstring+',scrollbars=yes,width='+sWidth+',height='+sHeight+',top='+wint+',left='+winl);
}
//-->

