function popupImg(imgPath,imgName,imgDesc,siteTitle) 
{
	try
	{
		Opop.close() ;
		Opop = '' ;
	}
	catch(e){}
	Opop = window.open('','Foto','width=100,height=100,status=no,toolbar=no,menubar=no,location=no') ;		
	Opop.document.write('<html><head><title>' + siteTitle + '</title></head><body style="margin:0px" id="mybody">') ;
	Opop.document.write('<IMG id="myimg" SRC="' + imgPath + '" onload="resizeTo(this.width,(this.height + 150));mybody.focus()" alt="' + imgDesc + '" onclick="window.close()" style="cursor:pointer">') ;
	Opop.document.write('<p align="center" style="font:12px Arial;color:#000;text-decoration:none;">' + imgName + '</p>') ;
	Opop.document.write('</body>') ;
//	Opop.mybody.innerHTML = '<IMG id="myimg" SRC="' + imgPath + '" onload="resizeTo(this.width,(this.height + 100));mybody.focus()">' ;
	Opop.myimg.src = imgPath ;
	//window.event.cancelBubble = true;
}
//confirm delete
function deletes(){
	return confirm("Do you want to erase the item(s)?");
/* onClick="return deletes();"*/
}

function setHeight()
{
	if (screen.height > 1000)
		document.getElementById('container').style.margin = "130px auto";
}