function win(fileName) {
     myWin = window.open('','myWindow','scrollbars=yes,directories=no,status=no,resizable=yes,toolbar=no,copyhistory=no,location=no,menubar=no,width=500,height=400,top=0,left=0')
     myWin.location.href = fileName;
}

// gia tnv .gr offer.php
function popupPage() {
var page = "offer.php";
windowprops = "height=400,width=520,location=no," + "scrollbars=yes,menubars=no,toolbars=no,resizable=yes";
window.open(page, "PopupPrices", windowprops);
}

function hidestatus() {

window.status=''
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus

function NewWindow(mypage,myname,w,h,scroll){
  var win= null;
  var winl = (screen.width-w)/2 + 30;
  var wint = (screen.height-h)/2;
  var settings  ='height='+h+',';
      settings +='width='+w+',';
      settings +='top='+wint+',';
      settings +='left='+winl+',';
      settings +='scrollbars='+scroll+',';
      settings +='resizable=no';
  win=window.open(mypage,myname,settings);
  if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}

