function Bookmarkekle (strURL, strTitle)
{
    if (window.sidebar) 
    { 
        // Mozilla Firefox Bookmark
        window.sidebar.addPanel(strTitle, strURL,"");
    }
    else if( window.external )
    {
        // IE Favorite
        window.external.AddFavorite(strURL, strTitle);
    }
    else if(window.opera && window.print)
    { 
        // Opera Hotlist
        var elem = document.createElement('a');
        elem.setAttribute('href',url);
        elem.setAttribute('title',title);
        elem.setAttribute('rel','sidebar');
        elem.click();
    }
}

function poponload(STRurl)
{
var vheight=screen.availHeight*0.85;
var vwidth=screen.availWidth*0.98;
vheight=parseInt (vheight);
vwidth=parseInt (vwidth);
testwindow= window.open (STRurl+vwidth+"x"+vheight+".html", "mywindow",
    "location=1,status=1,scrollbars=1,width="+screen.availWidth+",height="+screen.availHeight);
testwindow.moveTo(0,0);
}