var win=null;
function pop_up(mypage,myname,w,h,pos,infocus)
{
    if(pos=="random"){myleft=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;mytop=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
    if(pos=="center"){myleft=(screen.width)?(screen.width-w)/2:100;mytop=(screen.height)?(screen.height-h)/2:100;}
    else if((pos!='center' && pos!="random") || pos==null){myleft=0;mytop=20}
    
    settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=no,location=no,directories=no,status=yes,menubar=no,toolbar=no,resizable=no";
    win=window.open(mypage,myname,settings);
    win.focus();
}  

function sohbet()
{
    pop_up(BASE_URL +"seslisohbet","sohbet",'1020','700','center');
}
function sohbet_nav()
{
    pop_up(BASE_URL +"seslisohbet/sohbet","sohbet",'1020','700','center');
}
function acil_sohbet()
{
    pop_up(BASE_URL +"seslisohbet/hizligiris","sohbet",'1020','700','center');
}
function odaya_gir(id,odano)
{
    if(win == null)
    pop_up(BASE_URL+"seslisohbet/sohbet/"+id,"sohbet",'1000','700','center');
    else{
        win.focus();
        win.baglan(id,odano);
    }
}

function odaya_gir_prelogin(id)
{ 
    pop_up(BASE_URL+"seslisohbet/giris/"+id,"sohbet",'1000','700','center'); 
}







