<!--//

sfHover = function()
{
		var sfEls = document.getElementById("horizontal").getElementsByTagName("LI");
		for (var i = 0; i < sfEls.length; i++)
		{
				sfEls[i].onmouseover = function()
				{
						this.className+=" sfhover";
				}
				sfEls[i].onmouseout=function()
				{
						this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
				}
		}
		
		if (document.getElementById("vertical"))
    {
      	var sfElsH = document.getElementById("vertical").getElementsByTagName("LI");
      	
        for (var i = 0; i < sfElsH.length; i++)
        {
        		sfElsH[i].onmouseover = function()
            {
        			 this.className += " sfhover";
        		}
        		
        		sfElsH[i].onmouseout = function()
            {
        			 this.className = this.className.replace(new RegExp(" sfhover\\b"), "");
        		}
      	}
  	}
}

if (window.attachEvent)
{
	window.attachEvent("onload", sfHover);
}
/*
    End Drop Down Menu javascript
*/


function printpage(siteURL, pageTitle, theWidth, theHeight) {
  theWidth  = theWidth  == 0 ? 100 : theWidth;
  theHeight = theHeight == 0 ? 100 : theHeight;
  myPopup = window.open(siteURL + '/print/' + pageTitle,'InterviewNotes','width=' + theWidth + ',height=' + theHeight + ',resizable=no,scrollbars=yes,status=no');
}
    function openShowPopupWindow(fileToOpen, productID)
    {   
        
        // Try and load the popup window
        try
        {
            // The new window
            window.open(fileToOpen + '?id=' + productID , '_blank', 'width = 450', 'resizable=0', 'scrollbars=1', 'status=40'); 
        }
        catch (e)
        {
            // Show a simple error for the user
            alert("Error: Could not initiate the loading of the popup window"); //  + e 
        }
    }

//-->
