function windoz()
{
opt='toolbar=no,scrollbars=no,resizable=no,directories=no,menubar=no,status=no,top=50,left=50,width=600,height=400';  

nuova = window.open('../mgd2001/english/index.html', 'new', opt);
nuova.self.focus();
}

function windoz2(url)
{
opt='toolbar=no,scrollbars=no,resizable=no,directories=no,menubar=no,status=no,top=50,left=50,width=600,height=400';  

nuova = window.open(url, 'new', opt);
nuova.self.focus();
}

function windoz3(url,w,h)
{
opt='toolbar=no,scrollbars=no,resizable=no,directories=no,menubar=no,status=no,top=50,left=50,width=' + w + ',height=' + h;  

nuova = window.open(url, 'new', opt);
nuova.self.focus();
}

function newWindow(url,w,h)
{


nuova = window.open(url, w, h);
nuova.self.focus();
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}




function obrazek(title,url, x, y)
 {
  var okno = window.open("", "VienaHotel", "width="+x+",height="+y);
  okno.innerWidth = x;
  okno.innerHeight = y;
  okno.document.write("<html><head><title>Mattoni Grand Drink - "+title+" ---</title></head>");
  okno.document.write("<body><img src=\""+url+"\" width=\""+x+"\" height=\""+y+"\" style=\"position: absolute; top: 0; left: 0;\" onClick=\"window.close();\" alt=\"zavøít okno/close window\"></body></html>");
  okno.focus();
 }
 
 function okno(url, x, y)
 {
  var okno = window.open(url, "", "width="+x+",height="+y);
  okno.innerWidth = x;
  okno.innerHeight = y;
 }



function shoot(theUrl, winName, features) {
window.open(theUrl, winName, features);

}