/* $Id: remote.js,v 1.4 2008/08/11 07:43:32 danielk Exp $ */

	/**
	*	Standaard Variablen die je moet overschrijven.
	*/
	var bgcolor = "FFFFFF";
	var lokatie = "0";
	var modus = "horizontal";
	var border = "0";
	var bordercolor = "000000";
	var borderstyle = "none";
	
	function showIframe() {
		switch (modus) {
			case "horizontal":
				document.write('<iframe style="width: 700px; height: 126px; border: '+borderstyle+' '+border+'px #'+bordercolor+';" src="http://www.zeeuwseagenda.nl/event_selector.php?mode=horizontal&lokatie='+lokatie+'&bgcolor='+bgcolor+'" frameborder="0" scrolling="no" marginheight="5" marginwidth="5"></iframe>')
			break
			case "vertical":
				document.write('<iframe style="width: 244px; height: 388px; border: '+borderstyle+' '+border+'px #'+bordercolor+';" src="http://www.zeeuwseagenda.nl/event_selector.php?mode=vertical&lokatie='+lokatie+'&bgcolor='+bgcolor+'" frameborder="0" scrolling="no" marginheight="5" marginwidth="5"></iframe>')
			break
		}
	}