function showImage(img) {
  var aNoteWin;
 
aPopUp=window.open('','bigPhoto','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,width=700,height=800');
  ndoc = aPopUp.document;
  astr='<HTML><HEAD><TITLE>Lennart Gyllensten</TITLE></HEAD>';
  astr+='<body background="images/bggrey.jpg">';
  astr+='<a href="javascript:window.close();">Stäng fönstret</a><br>';
  astr+='<img src="'+img+'" border="0" alt="">';  
  astr+="</BODY></HTML>";
  ndoc.write(astr);
  ndoc.close();
  self.aNoteWin = aPopUp;
}

/*------------------------------------------------------------------------------*/

function showDiv(layer){
	alert('hej');
	//if (document.getElementById(layer).style.visibility =='hidden'){
	    document.getElementById(layer).style.visibility = 'visible';
	//}
}

/*------------------------------------------------------------------------------------*/

function closeDiv(layer){
	if (document.getElementById(layer).style.visibility =='visible'){
		document.getElementById(layer).style.visibility = 'hidden';
	}
}

/*---------------------------------------------------------------------------------------*/

function changePage(toPage){
	document.getElementById('main').src = toPage;
	document.getElementById('sub').style.display = 'none';
}
/*---------------------------------------------------------------------------------------*/

function changeMenuPage(toPage){
	document.getElementById('main').src = toPage;
	document.getElementById('sub').style.display = 'block';
}
