function hideVideo(){
obj=document.getElementById('media');
obj.style.display="none";
}

function showBlack(){
obj=document.getElementById('media2');
obj.style.display="block";
}

function videoPopup() {
window.open('','popup','width=660,height=550,left=0,top=0,scrollbars=1');
}