function openANewWindow(prpage,hlWidth,hlHeight)
  {
		newwindow =  window.open(prpage, '', 'toolbar=no,directories=nomenubar=no,status=no,resizable=no,scrollbars=no,width='+hlWidth+',height='+hlHeight+'');
  }

function goPage(inStr)
	{
	if (inStr == "self")
			return true;
	else
		 	document.location = inStr;
	}
