﻿function buttonHover(th,n) {
    if(n==1) {
        th.className = "btnImageH";
    } else {
        th.className = "btnImage";
    }
}

function showBusy(n) {
    var thx;
    var x = document.location.href;
    var y = (x.length-x.indexOf(".com/"))==5 ? "resources" : "../resources";
    if(n==1) {
        thx = document.getElementById("busy_Div");
        if(thx==null) {
            document.write("<div id='busy_Div' style='position:absolute; display:none; z-Index:100; left:0%; top:0%; width:100%; height:100%; background:#ffffff; border:0px solid #888888'><table width='100%' height='100%' style='font-size:10pt'><tr><td align='right' valign='middle'><img src='"+y+"/images/pifbusy.gif'><td width='50%'><font color=#888888>Loading, Please wait ...</font></table></div>");
        }		
        document.getElementById("busy_Div").style.display = "block";
    } else {
		thx = document.getElementById("busy_Div");		
		thx.style.display = "none";    
    }
}
