function tarkista(lomake)
{
	nimi = document.getElementById("etunimi");
	sukunimi = document.getElementById("sukunimi");
	katu = document.getElementById("katu");
	postinumero = document.getElementById("postinumero");
	kaupunki = document.getElementById("kaupunki");
	sahkoposti = document.getElementById("sahkoposti");

	if(etunimi.value.length==0)
			{
			alert("Fill in your first name!");
			etunimi.focus();
			return false;
		}

	if(sukunimi.value.length==0)
			{
			alert("Fill in your last name!");
			sukunimi.focus();
			return false;
		}

	if(katu.value.length==0)
			{
			alert("Fill in your street adress!");
			katu.focus();
			return false;
		}

	if(postinumero.value.length==0)
			{
			alert("Fill in your post number!");
			postinumero.focus();
			return false;
		}

	if(kaupunki.value.length==0)
			{
			alert("Fill in your city!");
			kaupunki.focus();
			return false;
		}



	if(sahkoposti.value.length==0)
		{
		alert("Fill in your e-mail adress!");
		sahkoposti.focus();
		return false;
		}

	if(sahkoposti.value.search("@")==-1)
		{
		alert("Fill in a real e-mail adress!");
		return false;
		}

return true;
}

function SelectAll(id)
{
    document.getElementById(id).focus();
    document.getElementById(id).select();
}


function DeleteAll(id)
{
    document.getElementById(id).focus();
    document.getElementById(id).value="";
}

function popitup(url) {
	newwindow=window.open(url,'lyricswindow','height=650,width=400');
	if (window.focus) {newwindow.focus()}
	return false;
}

