function Toggle(item) {
   obj=document.getElementById(item);
   visible=(obj.style.display!="none")
   key=document.getElementById("x" + item);
   if (visible) {
     obj.style.display="none";
   } else {
      obj.style.display="block";
   }
}

//pop up

function openWin( winHeight, winWidth, picSrc )
{
    newWin = window.open('', '', 'height='+ winHeight + ',width='+ winWidth + 'toolbars=no, scrollbars=no' );
    newWin.document.write("<head><title>Galerķa</title><style type='text/css'> body {margin-left: 0px;	margin-top: 0px; margin-right: 0px;	margin-bottom: 0px; background-color: #000000;}</style></head>");	
	newWin.document.write("<body margin-left'0px' margin-top='0px' margin-right='0px' margin-bottom='0px'>");
    newWin.document.write("<p align=center>");
    newWin.document.write("<img src=" + picSrc + "><br>");
    newWin.document.write("<br><input type='button' value='Cerrar' onclick='JavaScript:window.close()'>");
    newWin.document.write("</p>");
	newWin.document.write("</body>");
}
function source(){
str = thesource.innerHTML;
str = str.replace(/\</g, '&lt;');
str = str.replace(/\>/g, '&gt;');
}