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 openHelp(){

 helpwindow = window.open ("http://chatportal.hu/help/index.html","chat","location=0,status=0,scrollbars=0, width=740,height=570");  

}//openHelp
//---------------------------------------------------------//

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
//---------------------------------------------------------//
