﻿function RemoveText(textToRemove, control) {
    if (control.value == textToRemove) {
        control.value = '';
    }
}
function ReplaceDefaultText(textToReplace, control) {
    if (control.value.length == 0) {
        control.value = textToReplace;
    }
}
function GetVideo(name) {
    if(confirm("By click 'Ok' you state that you have read and agree to the 'Terms of Use Agreement'. Continue?")){ 
        window.open("/popupwindows/downloadfile.aspx?n=/" + name, "",
                "height=100,width=100,menubar=no,toolbar=no,resizable=no");
    }
}

//JQuery
$(function() {
    $('.topNavigation .menu .link').ahover();          
});