
function display_image( image, width, height )
{ 
  var s;
  s = "height=" + height + ",width=" + width;
  var OpenWindow=window.open("", "idler-image", s ); 
  
}


function display_image2()
{
  try
  {
    myWindow = window.open("", "tinyWindow", 'toolbar,width=150,height=100') ;
    myWindow.document.write("Welcome to this new window!");
    myWindow.document.bgColor="lightblue";
    //myWindow.document.close(); 
    myWindow.focus(); 
  }
  catch( e )
  { ; }
}

function PopupPic(sPicURL) 
{ 
  var win;
  win = window.open( "popup.html?" + sPicURL, "idlerimage",  "resizable=1,HEIGHT=600,WIDTH=600"); 
  //win.document.close(); 
  return false;
}


