
function fnFBWin(url) {
    window.open(url,'LazyFace','toolbar=0,status=0,width=600,height=400');return false;
}

function fnShowHide(id) {
    
    var obj = document.getElementById(id);  
    
    if(String(obj.style.display).toLowerCase()=="none") obj.style.display="block";
    else obj.style.display="none";
    
    return false;
}




