function launchimgwin(winurl,winname,winfeatures)
{
   //This launches a new window and then
   //focuses it if window.focus() is supported.

   newwin = window.open(winurl,winname,winfeatures);
   setTimeout('newwin.focus();',250);

 //  alert(newwin.parent.);
 //  newwin.moveTo(newwin.parent.left,newwin.parent.top);
//   if(javascript_version > 1.0)
//   {
//      //delay a bit here because IE4 encounters errors
//      //when trying to focus a recently opened window
//   }
}

function setDisabled(OnOffFlag,formFields)
{
  for (var i = 1; i < setDisabled.arguments.length; i++)
    setDisabled.arguments[i].disabled = OnOffFlag;
}

// End -->
