<!--
function openFacebook(url) {
    var dwidth = 605;
    var dheight = 605;
    var leftVal = (screen.width / 2) - (dwidth/2);
    var topVal = (screen.height / 2) - (dheight/2);
    window.open('http://www.facebook.com/sharer.php?u='+url, 'FacebookWindow','fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=no,directories=no,location=no,width='+dwidth+',height='+dheight+',left='+leftVal+',top='+topVal, true);
}
function openTwitter(url) {
    var dwidth = 605;
    var dheight = 605;
    var leftVal = (screen.width / 2) - (dwidth/2);
    var topVal = (screen.height / 2) - (dheight/2);
    window.open('http://twitter.com/home/?status='+url, 'TwitterWindow','fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=no,directories=no,location=no,width='+dwidth+',height='+dheight+',left='+leftVal+',top='+topVal, true);
}
function validgakya() {
	valid = true;
        if (document.fwebid.url.value=="") {
                alert ("Please fill in the 'LONG URL' form!");
                valid = false;
        }
        //return valid;

		if (document.fwebid.itung.value=="") {
                alert ("Please fill in the 'NUMBER' form!");
                valid = false;
        }
        return valid;
}
function bookmarkfwebid(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}
//-->