// JavaScript Document
// 'toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=500,height=500'
var popUpWinPic=0;
var popUpWinLeg=0;

function popUpWindow_legenda(URLStr)
{
  if(popUpWinLeg)
  {
    if(!popUpWinLeg.closed) popUpWinLeg.close();
  }
    popUpWinLeg = open(URLStr, "WinLeg"
					     , 'toolbar=no,location=yes,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=248,height=248,left=10, top=10,screenX=10,screenY=10');

}

function popUpWindow_pic(URLStr, left, top, width, height)
{
  if(popUpWinPic)
  {
    if(!popUpWinPic.closed) popUpWinPic.close();
  }
  //"#FFFFAA"
  var imgstr  = '<div style="left:2px;top:46px"><img align="center" src="'+URLStr+'"></div>';
  var headstr = '<head><title>'+URLStr+'</title></head>';
  var bodystr = 
   '<body bgColor="#000000">'
   +'<table width="10%" align="center" border="0" bgColor="#CCCCCC" cellpadding="0" cellspacing="2" border: thin solid #000000;font-weight: bold>'
   +'<tr>'
   +'<td valign="top">'+URLStr+'+'+width+'+x+'+height+'   </td>'
   +'<td valign="top"><input type="button" value="  OK  " onClick="self.close()"></td>'
   +'</tr>'
   +'</table>'
   +'<table align="center" border="0">'
   +imgstr
   +'</td></tr></table>'
   +'</body>';

   popUpWinPic = open("", "picsolar", 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+(height+20)+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
   popUpWinPic.document.write(headstr+bodystr);
   var imageHeight, imageWidth;
   imageHeight  =  popUpWinPic.document.images[0].height;
   imageWidth   =  popUpWinPic.document.images[0].width;
   if (ie5) {
			popUpWinPic.resizeTo(1024, imageHeight);
   } else {
        popUpWinPic.Window.resizeTo(1024, imageHeight ); 
  }
	
   popUpWinPic.focus();
  
}

function PopupPic(sPicURL) { 
     window.open( "popup2.html?"+sPicURL, "",  
     "resizable=1,scrollbars=yes,left=10, top=10,HEIGHT=200,WIDTH=200"); 
} 





