// Original: Alex Tu <boudha1@hotmail.com>// Web Site:  http://www.geocities.com/MadisonAvenue/4368function gotoLink(form){	var URL = document.form.site.options[document.form.site.selectedIndex].value;	window.location.href = URL;}// Let op: gebruik \ voor een " (escape character)function displayMenu(home){	if (home > 0){		cardPath = "cards/";		homePath = "";	}	else{		cardPath = "../";		homePath = "../../";	}	document.writeln("<form name=\"form\">");	document.writeln("<select name=\"site\" size=1 class=\"pulldown\" onChange=\"javascript:gotoLink()\">");	document.writeln("<option value=\"" + homePath + "index.html\">select a category...");	document.writeln("<option value=\"" + homePath + "index.html\">- - - - - - - - - - - - - - - -");	document.writeln("<option value=\"" + cardPath + "cake/index.html\">- congratulations!");	document.writeln("<option value=\"" + cardPath + "partytime/index.html\">- party time!");	document.writeln("<option value=\"" + cardPath + "kiss/index.html\">- e-kiss");	document.writeln("<option value=\"" + cardPath + "miss/index.html\">- miss you...");	document.writeln("<option value=\"" + cardPath + "wishuwerehere/index.html\">- wish you were here");	document.writeln("<option value=\"" + cardPath + "fourpack1/index.html\">- where were you");	document.writeln("<option value=\"" + cardPath + "bodyparts/index.html\">- bodyparts");	document.writeln("<option value=\"" + cardPath + "anonymous/index.html\">- anonymous admirer");	document.writeln("<option value=\"" + cardPath + "rainbow/index.html\">- happy swearing");	document.writeln("<option value=\"" + cardPath + "hands/index.html\">- hands up");	document.writeln("<option value=\"" + cardPath + "cyberspace/index.html\">- greetings from cyberspace");	document.writeln("<option value=\"" + cardPath + "figure/index.html\">- cute, funny characters");	document.writeln("<option value=\"" + homePath + "christmas.html\">- christmas");	document.writeln("<option value=\"" + homePath + "index.html\">- - - - - - - - - - - - - - - -");	document.writeln("<option value=\"" + cardPath + "wishuwerehere/index.html\">- new!");	document.writeln("<option value=\"" + homePath + "index.html\">- - - - - - - - - - - - - - - -");	document.writeln("<option value=\"" + homePath + "index.html\">- back to homepage");	document.writeln("</select>");	document.writeln("</form>");}