// JavaScript Document


// POP Window -->


function PopupPic(sPicURL) { 
     window.open( "popup.htm?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200,left=20,top=50"); 
   } 
   
   function openSubWin1(url, nm, x, y, w, h, atts) {
   
  nm = nm || "subwindow";
  atts = atts || "resizable,scrollbars";
  
  w = w || 600; 
  h = h || 450;
  url1="popup.htm?"+url

  x = (typeof x=="number")? x: window.opera? 100: Math.round( (screen.availWidth - w)/2 );
  y = (typeof y=="number")? y: window.opera? 20: Math.round( (screen.availHeight - h)/2 );
  atts += ',width='+w+',height='+h+',left='+x+',top='+y;
  var win = window.open(url1, nm, atts); 
  if (win) {
    if (!win.closed) { win.resizeTo(w,h); win.moveTo(x,y); win.focus(); return false; }
  } 
  return true;
}

-->

