function AdStatusHighlight(IDX,COLORCODE) {
	document.getElementById("divbkg"+IDX).style.backgroundColor = COLORCODE;

}
function loadPage(URL,ITYPE) {
    if(ITYPE==3 || ITYPE==4 || ITYPE==5 || ITYPE==6){
	    window.open(URL,"_blank");
	} else {
	    phoneDisplay=0;
	    top.location.href=URL;
	}
}
function BuildOffers(FILENAME,STRING,WIDTH,HEIGHT){  
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+WIDTH+'" height="'+HEIGHT+'" id="'+FILENAME+'" align="middle">\n');
    document.write('<param name="FlashVars" value="string='+STRING+'" />\n');
    document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
    document.write('<param name="movie" value="images/'+FILENAME+'.swf" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ffffff" />\n');
    document.write('<embed src="images/'+FILENAME+'.swf" FlashVars="string='+STRING+'" loop="false" menu="false" quality="high" wmode="transparent" bgcolor="#ffffff" width="'+WIDTH+'" height="'+HEIGHT+'" name="'+FILENAME+'" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
    document.write('<noembed><img src="images/'+FILENAME+'.jpg" width="'+WIDTH+'" height="'+HEIGHT+'" alt="'+STRING+'" border="0"></noembed>\n');
    document.write('</object>\n');
    
}
function validateCoreg() {
    var okay = true;

    if (okay && document.reg.contacttime.value == ""){
		alert("Please select the best time to contact you.");
		document.reg.contacttime.focus();
		return bSubmitted = okay = false;
	}
    if (okay && document.reg.reason.value == ""){
		alert("Please select why you are interested in additional income.");
		document.reg.reason.focus();
		return bSubmitted = okay = false;
	}
    if (okay && document.reg.started.value == ""){
		alert("Please select your desired additional income.");
		document.reg.started.focus();
		return bSubmitted = okay = false;
	}	
    if (okay && document.reg.important.value == ""){
		alert("Please select your interest level.");
		document.reg.important.focus();
		return bSubmitted = okay = false;
	}			
    if (okay && document.reg.money.value == ""){
		alert("Please select the number of hours you can invest.");
		document.reg.money.focus();
		return bSubmitted = okay = false;
	}
    if (okay && document.reg.invest.value == ""){
		alert("Please select how much you are willing and able to invest in starting your home-based business.");
		document.reg.invest.focus();
		return bSubmitted = okay = false;
	}	
	
	if (okay) {
        bSubmitted = true;
        //return true;        
        document.reg.submit();
    }    
    
}