function n(){
		if(document.reg.name.value=="Navn")
		{
			document.reg.name.value="";
		}
	}
function a(){
		if(document.reg.age.value=="Alder")
		{
			document.reg.age.value="";
		}
	}
function h(){
		if(document.reg.height.value=="Høyde(cm)")
		{
			document.reg.height.value="";
		}
	}
function p(){
		if(document.reg.phone.value=="Telefon")
		{
			document.reg.phone.value="";
		}
	}
function ad(){
		if(document.reg.address.value=="Adresse")
		{
			document.reg.address.value="";
		}
	}
function z(){
		if(document.reg.zip.value=="Postnr.")
		{
			document.reg.zip.value="";
		}
	}
function l(){
		if(document.reg.location.value=="Sted")
		{
			document.reg.location.value="";
		}
	}
function em(){
		if(document.reg.email.value=="E-post")
		{
			document.reg.email.value="";
		}
	}
function int(){
		if(document.reg.interests.value=="Interesser")
		{
			document.reg.interests.value="";
		}
	}

function n1(){
	if(document.reg.name.value=="")
	{
		document.reg.name.value="Navn";	
	}
	}
function a1(){
		if(document.reg.age.value=="")
		{
			document.reg.age.value="Alder";	
		}
	}
function h1(){
		if(document.reg.height.value=="")
		{
			document.reg.height.value="Høyde(cm)";	
		}
	}
function p1(){
		if(document.reg.phone.value=="")
		{
			document.reg.phone.value="Telefon";
		}
	}
function p2(){
		if(document.reg.phone.value!="")
		{
			var SITEROOT="http://www.missbrunogblid.no/";
			var url = SITEROOT+"contact.php";
			var str=document.reg.phone.value;
   			var valid_no = ajax.sendrequest("GET", url, { pid:str }, '', 'valid_phone');
		}
	}
function ad1(){
		if(document.reg.address.value=="")
		{
			document.reg.address.value="Adresse";
		}
	}
function z1(){
		if(document.reg.zip.value=="")
		{
			document.reg.zip.value="Postnr.";
		}
}
function l1(){
		if(document.reg.location.value=="")
		{
			document.reg.location.value="Sted";
		}
	}
function em1(){
		if(document.reg.email.value=="")
		{
			document.reg.email.value="E-post";
		}
}
function int1(){
		if(document.reg.interests.value=="")
		{
			document.reg.interests.value="Interesser";
		}
	}
