function ow(url,w,h)
{
  win = "width="+(w+20)+",height="+(h+20)+",menubar=no,location=no,resizable=yes,scrollbars=no";
  newWin = window.open(url,'window',win);
  newWin.focus();
}

function open_window(url,w,h,id)
{
  win = "width="+(w+20)+",height="+(h+20)+",menubar=no,location=no,resizable=yes,scrollbars=yes";
  newWin = window.open(url,id,win);
  newWin.focus();
}
function open_cwindow(idcontent,w,h,id)
{   
  obj=document.getElementById(idcontent);
  if(obj)
  { win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
    newWin = window.open('',id,win);
    newWin.document.open();
    newWin.document.write("<html><head><title></title><link href=\"/templates/center/style.css\" rel=\"stylesheet\" type=\"text/css\"></head><body><div align=\"center\"><img alt=\"\" src=\"/img/top_price.gif\" style=\"margin-top:35px;\" width=593 height=22>");
    newWin.document.write(obj.value);
    newWin.document.write("<img alt=\"\" src=\"/img/bot_price.gif\" style=\"margin-top:20px;\" width=593 height=24></div></body></html>");
    newWin.document.close();
    newWin.focus();
  }	
}

function open_cwindow2(idcontent,w,h,id)
{   
  obj=document.getElementById(idcontent);
  if(obj)
  { win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
    newWin = window.open('',id,win);
    newWin.document.open();
    newWin.document.write("<html><head><title></title><link href=\"/templates/"+id+"/style.css\" rel=\"stylesheet\" type=\"text/css\"></head><body><div align=\"left\" style=\"margin: 10px;\">");
    newWin.document.write(obj.innerHTML);
    newWin.document.write("</div></body></html>");
    newWin.document.close();
    newWin.focus();
  }	
}

function open_fwindow(url,w,h,id)
{   
    win = "width="+(w+20)+",height="+(h+20)+",menubar=no,location=no,resizable=yes,scrollbars=yes";
    newWin = window.open('',id,win);
    newWin.document.open();
    newWin.document.write("<html><head><title></title><link href=\"/templates/center/style.css\" rel=\"stylesheet\" type=\"text/css\"></head><body><div align=\"center\">");
    newWin.document.write("<object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 width="+w+" height="+h+">");
    newWin.document.write("<param name=movie value=\""+url+"\">");
    newWin.document.write("<param name=quality value=high>");
    newWin.document.write("<param name=menu value=false>");
    newWin.document.write("<embed src=\""+url+"\" quality=\"high\" type=\"application/x-shockwave-flash\" width="+w+" height="+h+">");
    newWin.document.write("</embed>");
    newWin.document.write("</object>");
    newWin.document.write("</div></body></html>");
    newWin.document.close();
    newWin.focus();

}