function newWin(h,w,page) {
  var newWin = null;
  newWin = window.open(page,'popupWindow','height='+h+',width='+w+',screenY=0,scrollbars=yes,status=yes,location=yes,toolbar=yes,resizable=yes,menubar=yes');
  newWin.focus();
  void(0);
}

function namedWin(h,w,name,page) {
  var newWin = null;
  newWin = window.open(page,name,'height='+h+',width='+w+',screenY=0,scrollbars=yes,status=yes,location=yes,toolbar=yes,resizable=yes,menubar=yes');
  if (! newWin ) {
    alert("You need to allow popups in order to view this page.");
  } else {
    newWin.focus();
  }
  void(0);
}

function newWinOpt(h,w,scroll,status,location,tool,resize,menu,page) {
  var newWin = null;
  newWin = window.open(page,'popupWindow','height='+h+',width='+w+',screenY=0,scrollbars='+scroll+',status='+status+',location='+location+',toolbar='+tool+',resizable='+resize+',menubar='+menu);
  if (! newWin ) {
    alert("You need to allow popups in order to view this page.");
  } else {
    newWin.focus();
  }
  void(0);
}

function bumpthis(page) {
  var newWin = null;
  newWin = window.open('http://qa2k3.new.volvocars.com/embryo/' + page + '.html','popupWindow','height=164,width=302,screenY=150,scrollbars=false,status=false,location=false,toolbar=false,resizable=false,menubar=false');
  newWin.focus();
  void(0);
}
