/////////////////////////////////////////////////////////////////////////////////
// JAVASCRIPT TILL SKANSKABILDER.se
// By: Daniel Nilsson, daniel.nilsson@yelah.net, http://www.gamlao.se/daniel
// Version 1.2 Daterad 2005-06-20:21.12
/////////////////////////////////////////////////////////////////////////////////

// ----------------------------------------------
// MouseOver till menyn 
// ----------------------------------------------

function menyvaxlare(bildid,sokvag)
{
  document.getElementById(bildid).src = sokvag;
}

// ----------------------------------------------
// PopUp
// ----------------------------------------------

function PopupOpen(URL)
{
window.open('','fakta2','toolbar=no,directories=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=300,height=400');
window.open(URL,'fakta2')
}

// ----------------------------------------------
// Confirm-fråga till formulär
// By: Nannette Thacker http://www.shiningstar.net
// ----------------------------------------------

function confirmSubmit()
{
var agree=confirm("Vill du verkligen fortsätta?");
if (agree)
	return true ;
else
	return false ;
}

/*
// ----------------------------------------------
// Skydda bilder från högerklick (IE only)
// ----------------------------------------------

function click() {
if (event.button==2) {
alert('Copyright Skånska Bilder');
}
}
document.onmousedown=click

// ----------------------------------------------
// Kontrollera om bild vald vid fotouppladdning
// ----------------------------------------------

function kollaOmBildVald(){

     if(document.filuppladdning.userfile1.value != ""){
        document.filuppladdning.submit();
        }else{
		alert("Du har inte valt någon bild");
		eval('document.filuppladdning.userfile1.focus()');
		}
}
*/