// Alternating|Select script by Jeremy McPeak @ WDOnline.com
var activeRow = null;
	
function dataMouseOver(whichEl) 
{
    if ((!activeRow) || (activeRow && activeRow != whichEl)) whichEl.className = "row-over";
}

function dataMouseOut(whichEl) 
{
    if ((!activeRow) || (activeRow && activeRow != whichEl)) whichEl.className = "row";
}

function dataMouseClick(whichEl) 
{
    if (activeRow && activeRow != whichEl) activeRow.className = "row";
    whichEl.className = "row-active";
    activeRow = whichEl;
    //bleh(whichEl.getAttribute("bleh"));
    //bleh();
}
    
function ShowHelp(HT, winWid, winHT)
{
	if (HT > "") 
		newWindow = window.open("/inc/HelpWin.cfm?HT="+HT,"HelpWin","bar=No,resizable=no,menubar=no,status=no,scrollbars=no,width=" + winWid + ",height=" + winHT)
	else
		alert("Help message not entered. Please advise support.")
}

// Popup Print Window
function printWin(htURL)
{
    var prtwin = window.open('/inc/printresume.cfm?ID='+htURL,'PrintResume','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=700,height=450');
	prtwin.print();
}
