<!-- MegaPopUps.com Advertising Code Begin -->
<!--  
//frequency cap, pop-up per number of hours
var frequencyCap = 0; //hours 
function setCookie(cookieName,cookieValue, expirehours) {

  if (frequencyCap > 0){
	var today = new Date();
	var expire = new Date();
 	expire.setTime(today.getTime() + 3600000 * frequencyCap);
 	document.cookie = cookieName+"="+escape(cookieValue)
                 + ";expires="+expire.toGMTString();
  }else{
 	document.cookie = cookieName+"="+escape(cookieValue);
  }


}
function ReadCookie(cookieName) {
 var theCookie=""+document.cookie;
 var ind=theCookie.indexOf(cookieName);
 if (ind==-1 || cookieName=="") return ""; 
 var ind1=theCookie.indexOf(';',ind);
 if (ind1==-1) ind1=theCookie.length; 
 return unescape(theCookie.substring(ind+cookieName.length+1,ind1));
}
if (ReadCookie('MegaPopUpsAds') != 'yes')  
{ 
 setCookie('MegaPopUpsAds','yes', frequencyCap); 
//Pop-Up Code Here
 document.write('<SCRI'+'PT LANGUAGE="JavaScript1.1" '); 
 document.write(' SRC="http://www.MegaPopUps.com/popup.php?id=pub5exita&pop=enter&t=3">'); 
 document.write('</SCR'+'IPT>'); 
//Pop-Up Code End
} 

// --> 
<!-- MegaPopUps.com Advertising Code End -->