	<!-- ;

		var newwindow;
		var wheight = 0, wwidth = 0;
		var stdTitle = 'www.balloonstop.be';
		var fontTitle = '<font color=#CC0000 face=verdana size=1>';
		var colour='#DDDDDD';


		function popitup(url,format)
		{
			popitupDesc(url, stdTitle, format);
		}

		function popitupDesc(url, title, format)
		{
			if( format=='landscape')
			{
				iwidth=504;
				iheight=374;
			}
			else if(format=='portrait')
			{
				iwidth=374;
				iheight=504;
			}
			else if(format=='spcl')
			{
				iwidth=280;
				iheight=510;
			}
			else if(format=='contact')
			{
				iwidth=640;
				iheight=480;
			}
			else if(format=='contactPort')
			{
				iwidth=480;
				iheight=640;
			}


			var pwidth, pheight;

			var posX = (screen.width-iwidth)/2;
			var posY = ((screen.height-iheight)/2)-100;

			//alert(posX);
			//alert(posY);


			if ( !newwindow || newwindow.closed )
			{
				pwidth=iwidth+30;
				pheight=iheight+40;
				if(title!=stdTitle) {pheight=pheight+40;}
				newwindow=window.open('','htmlname','width=' + pwidth +',height=' +pheight + ',resizable=0,screenX='+ posX +',screenY='+ posY + ',left=' + posX + ',top=' + posY);
				wheight=iheight;
				wwidth=iwidth;
			}

			if (wheight!=iheight || wwidth!=iwidth )
			{
				pwidth=iwidth+30;
				pheight=iheight+90;
				if(title!=stdTitle) {pheight=pheight+40;}
				newwindow.resizeTo(pwidth, pheight);
				wheight=iheight;
				wwidth=iwidth;
			}

			
			newwindow.document.clear();
			newwindow.focus();
			newwindow.document.writeln('<html> <head> <title>' + title + '<\/title> <\/head> <body bgcolor= \"' + colour + '\"> <center>');
			//newwindow.document.writeln('<img src=' + url + ' title=\"' + title + '\" alt=\"' + title + '\" border=\"0\" onClick=\"window.close();\" width='+ iwidth +' height='+ iheight +' >');
			newwindow.document.writeln('<img src=' + url + ' title=\"[klik om het venster te sluiten]" alt=\"' + title + '\" border=\"0\" onClick=\"window.close();\" width='+ iwidth +' height='+ iheight +' >');
			//if the standard title is used, it should not be shown under the image
			if(title!=stdTitle)
			{
				newwindow.document.writeln(fontTitle);
				newwindow.document.writeln('<br /><b>' + title + '</b><br />');
				newwindow.document.writeln('</font>');
			}
			newwindow.document.writeln('<\/center> <\/body> <\/html>');
			newwindow.document.close();
			newwindow.focus();
		}


		// Routines to tidy up popup windows when page is left
		// Call with an onUnload="tidy5()" in body tag

		function tidy()
		{
			alert(colour);
			if (newwindow && !newwindow.closed)
			{
				newwindow.close();
			}
		}

	-->
