var win= null;

//---------------------------------------------------------//
function winOpen(mypage, myname, w, h, scroll){

 var winl = (screen.width-w)/2;
 var wint = (screen.height-h)/2;

 win=window.open(mypage,myname,'top='+wint+',left='+winl+',toolbar=0,location=0,directories=0,statusbar=0,menubar=0,scrollbars=0,resizable=1,width='+w+',height='+h);

 if(parseInt(navigator.appVersion) >= 4){
  
  win.window.focus();

 }//if

}//winOpen
//---------------------------------------------------------//
function addToFavorites(){

 if(window.external){

  window.external.AddFavorite("http://chatfoto.hu","ChatFoto.Hu");

 }//if

 else{

  alert("A böngésződ sajnos nem támogatja ezt a funckiót."); 

 }//else

}//addToFavorites
//---------------------------------------------------------//