function showIsoInfo()
			{
				window.open('isoInfo.html', '', 'toolbar=no,menubar=no,scrollbars=no, resizable=no,status=no,location=no,directories=no,top=100, left=200,fullscreen=no,height=170,width=300');
			}

function winOpen(file,title,w,h)
{
     
     look='';
     sbars = 0;
     resize = 0;
     if(w > screen.availWidth)
     {
      w = screen.availWidth-30;
      sbars = 0;
      resize = 1;
     }
     if(h > screen.availHeight)
     {
      h = screen.availHeight-60;
      sbars = 0;
      resize = 1;
     }
if(typeof(newWin)=='object' )
{
if(newWin.closed)
;
else
{
  newWin.resizeTo(w+10, h+29);
}
}
  // newWin.close();
else
{
;
 } 
 look = 'scrollbars='+sbars+', resizable='+resize+', width='+w+',height='+h+'';
    newWin = window.open(file,'newWinodow','toolbar=0,statusbar=0,location=0,'+look);
 newWin.document.write("<html><head><title>"+title+"</title><link rel=stylesheet type='text/css' href='css/style.css'></head>");
 newWin.document.write("<body leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0 marginwidth=0 marginheight=0 margin=0 BGCOLOR=#F2F1F1><img src=" +file+ " onClick='window.close();' border=0/>");
 newWin.document.write("</body></html>");
 newWin.focus();
 newWin.document.close();
}
