// javascript document

function writeEmail(tla,dom,nam) {
document.write("<a href='mailto:"+nam+"@"+dom+"."+tla+"'>"+nam+"@"+dom+"."+tla+"</a>");
}

function writeEmbedTag(movieURL,width,height) {
// this is used to achieve validation while still serving flash content to all
//<![CDATA[
if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) {
	document.write('<embed src="'+movieURL+'" quality="high" width="'+width+'" height="'+height+'" '
				+'type="application/x-shockwave-flash" pluginspace="http:www.macromedia.com/go/getflashplayer" />');
}
}

function checkSearch(val) {
	if (val && val!="" && val != "_marker_"){
	x=document.forms[0].search_laphona.options.length;
	for (i=0;i<x;i++) {
		if (document.forms[0].search_laphona.options[i].value=="_marker_") {
			marker=i;
			break;
		}
	}
	
		if (document.forms[0].search_laphona.options[document.forms[0].search_laphona.selectedIndex].index>marker) {
			type="services"; 
		} else {
			type="category";
		}
		//alert(document.forms[0].searchLaphona.options[document.forms[0].searchLaphona.selectedIndex].index);	
	 document.forms[0].whatType.value=type;
	 document.forms[0].submit();
	 return true;
	}
	return false;
}