function send_babylon()
{
        var url = "http://online.babylon.com/combo/index.html?word="+document.getElementById('word').value+"&lang="+document.getElementById('lang')[document.getElementById('lang').selectedIndex].value;
        window.open (url, "translation", "scrollbars=no,status=no,width=256,height=334,top=215,left=33");
}

function addFavorite()
{
   window.external.AddFavorite('http://www.secereler.net','SOY ve Mahalli sözler')
}

function printpage()
{
   window.print()
}
/*****
*  zaman sayacı

<FORM>
<FONT SIZE="2" FACE="Arial">Time spent here: </FONT><input size=5 name=timespent>
</FORM>

**/
startday = new Date();
clockStart = startday.getTime();

function initStopwatch() {
var myTime = new Date();
return((myTime.getTime() - clockStart)/2000);
}

function zaman() {

var tSecs = Math.round(initStopwatch());
var iSecs = tSecs % 60;
var iMins = Math.round((tSecs-30)/60);

var sSecs ="" + ((iSecs > 9) ? iSecs : "0" + iSecs);
var sMins ="" + ((iMins > 9) ? iMins : "0" + iMins);
//document.forms[0].timespent.value = sMins+":"+sSecs;

window.setTimeout('zaman()',2000);

if( sSecs == 58 ){

startday = new Date();
clockStart = startday.getTime();
window.setTimeout('zaman()',1);
xajax_onLineKullanici();

}

}

//****
function openWindow(xH,xW,lnk){
    open (lnk,"","height="+xH+",width="+xW+",scrollbars=yes,resizable=yes,status=yes,menubar=no,toolbar=no,location=no")
}
//***
var win=null;
function NewWindow(mypage,myname,w,h,scroll)
{

        LeftPosition=(screen.width)?(screen.width-w)/2:0;
        TopPosition=(screen.height)?(screen.height-h)/2:0;
        settings='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable';
    win=window.open(mypage,myname,settings);
}