// JavaScript Document

window.onload= function(){
	var sidemenu = document.getElementById("sidemenubox");
	
	var html = sidemenu.innerHTML;
	
	html = html +  '<form method="post" action="http://ymlp.com/subscribe.php?id=gejbsmwgmgj" target="signup_popup" onsubmit="window.open( \'http://ymlp.com/subscribe.php?id=gejbsmwgmgj\',\'signup_popup\',\'scrollbars=yes,width=600,height=450\'); return true;"><table border="0" align="center" cellspacing="0" cellpadding="5"><tr><td colspan="2"><font size="2" face="verdana,geneva"><b style="color:#e4322d">Vul uw e-mail adres in<br />om onze nieuwsbrief te ontvangen:</font></b></td></tr><tr><td valign="top"><font size="2" face="verdana,geneva" color="black">E-mail adres:</font></td><td valign="top"><input type="text" name="YMP0" size="20" /></td></tr><tr><td colspan="2"><input type="submit" value="Verzenden"  />&nbsp;</td></tr></table></form>';
	
	sidemenu.innerHTML = html;
	showPopup();
	showAirSwimmer();
}

function showPopup(){
	
	if(!getCookie("popup")){
		var html = '<div id="popup" style="position:absolute;top:10px;left:100px; padding:5px; background-color:#FFFF99; border:#000099 1px outset;text-align:center;z-index:100;">		<a href="#" style="color:#FF0000; font-size:10px" onclick="document.getElementById(\'popup\').style.visibility =\'hidden\';"> Sluiten x<br />		<img src="http://www.guntro.be/site/public/promo/popup.jpg" border="0" /></a>		</div>';
		document.getElementsByTagName("body")[0].innerHTML = 		document.getElementsByTagName("body")[0].innerHTML  + html;
		setCookie("popup","today",1);
	}else{
		
	}
}

function showAirSwimmer(){
	var sidemenu = document.getElementById("menuholder");
	
	var html = sidemenu.innerHTML;
	html = html + '<div style="text-align:center; font-weight:bold; color:red; position:absolute; right:17px; top:43px;"><a href="http://www.balloondeco.be"><img src="http://www.balloondeco.be/balloondeco/images/logo_fish.png" style="border:1px outset white" alt="Air swimmers   vliegende vissen  haai , clownvis  , helium , vissen met afstandsbediening  helium vissen .  ook nog wensballonen , geluksballonnen , candelbags waterlantaarn , waterlelei ,bioballon duif ,laliliefra . xxl wensballon  geluksballon ." width="200px;" vspace="2" /></a>	<div style="position:absolute; top:14px; right:13px">NIEUW !!!</div></div>';
	sidemenu.innerHTML = html;
	showPopup();
}

function setCookie(c_name,value,exdays)
 {
 var exdate=new Date();
 exdate.setDate(exdate.getDate() + exdays);
 var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
 document.cookie=c_name + "=" + c_value;
 }
 
 function getCookie(c_name)
 {
 var i,x,y,ARRcookies=document.cookie.split(";");
 for (i=0;i<ARRcookies.length;i++)
 {
   x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
   y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
   x=x.replace(/^\s+|\s+$/g,"");
   if (x==c_name)
     {
     return unescape(y);
     }
   }
 }
