//kollar newsletter
function checkEmail()
{
	
	var epost = document.newsletter.epost.value;
	var emailFilter=/^.+@.+\..{2,3}$/;
	if (!(emailFilter.test(epost))) 
	{ 
		alert("Skriv in en giltig E-mail.")
		return false;
	}	
	else return true;
}

//Rensar nyhetsbrev fält
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 

//Popup för fotoalbum
function Show(filename,winTitle) 
{
    var myImage = new Image();
    myImage.src=filename;
    properties='height=10,width=10,menubar=no,location=no,resizable=no,scrollbars=no,status=no';
    var imgWindow = window.open('','',properties);
    
    html = '<html>';
    html += '<head>';
    html += '<title>'+winTitle+'</title>';
    html += '</head>';
    html += '<body topmargin="0" marginheight="0" leftmargin="0" marginwidth="0" scroll="no" scrollbars="no">';
    html += '<img src="'+myImage.src+'" onLoad="resizeTo(document.bild.width+10,document.bild.height+60);" name="bild" OnClick="self.close();">';
    html += '</body>';
    html += '</html>';
    
    imgWindow.document.write(html);
}



