function rollOver(iName, iState)
{
   if(document.getElementById && self[iName + '_' + iState])
   {               
      document.getElementById(iName).src = self[iName + '_' + iState].src;
   }
}        

function openWindowOnFocus(strURL) 
{
	var strFeature = "left=10,top=10,width=700,height=600,resizable,scrollbars,status=no";
	var pWindow = window.top.open(strURL, "NewWindow", strFeature);
	if (pWindow)
		pWindow.focus();
}