// JavaScript Document
//function openSubWin(url, nm, x, y, w, h, atts) {
function openSubWin() {
  var url = "http://79.170.44.145/puerariamirifica.co.uk/compare";	
  var nm = "subwindow";

  var atts = "location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes";
  w = 600; h = 760;
  //h=screen.availHeight;

  h+=40;   

  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(url, nm, atts);
  if (win) {
    if (!win.closed) { win.resizeTo(w,h); win.moveTo(x,y); win.focus(); return false; }
  }
  return true;
}
