function changeBGColor(obj,hex)
{
obj.style.backgroundColor = hex;
}

/****Audio Captcha***/
  function openAudioCaptcha() 
	{
    var win = window.open('','Audio','width=320,height=80,resizable=0,scrollbars=0,titlebar=0,toolbar=0,menubar=0,status=0,directories=0,personalbar=0');
    win.focus();
	
    var content = "<HTML><HEAD><TITLE>Audio</TITLE></HEAD><BODY bgcolor='#FFFFFF'>";
	content += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="300" height="15" ><param name="allowScriptAccess" value="sameDomain"/><param name="movie" value="audio/xspf_player_slim.swf?song_url=audio/audio.php&song_title=Code%20Audio&autoplay=true"/><param name="quality" value="high"/><param name="bgcolor" value="#E6E6E6"/><embed src="audio/xspf_player_slim.swf?song_url=audio/audio.php&song_title=Code%20Audio&autoplay=true" quality="high" bgcolor="#E6E6E6" name="xspf_player" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" align="center" height="15" width="300"> </embed> </object>';
    content += "<FORM><DIV align='center'><INPUT type='button' value='Close this window' onclick='javascript:window.close();'></DIV></FORM>";
    content += "</BODY></HTML>";
    win.document.write(content);
    win.document.close(); 
    }
	
	
function turnOnLoading()
{
	document.getElementById("loadingBackground").style.visibility= "visible";
}
function turnOffLoading()
{
	document.getElementById("loadingBackground").style.visibility= "hidden";
}