function toggle(elment) {
	itm = document.getElementById(elment); 
	if (itm.style.display == "none") 	itm.style.display = "";
	else								itm.style.display = "none";
}

function tip(template) {
	document.getElementById("tipafriend").innerHTML = '<form action="script.cfml" method="post" id="tipform"><input type="hidden" name="action" value="tipafriend" /><input type="hidden" name="template" value="'+template+'" /><label for="yourname">Navnet ditt</label><input type="text" name="yourname" />	<label for="youremail">E-postadressen din</label><input type="text" name="youremail" /><label for="email">Mottakerens e-postadresse</label><input type="text" name="email" /><label for="msg">Personlig melding</label><textarea name="msg"></textarea><br /><input type="submit" value="Send >"></form>';	
}

function printerfriendly(template) {
	if (template.indexOf("?") > 1)	tpl = template + "&print=1";
	else						tpl = template + "?print=1";
	window.open(tpl);	
}