﻿function pageLoad(){
    
    var hiddenMSG = $get("ctl00$hfMSG");
    
    if (hiddenMSG != null)
    {
        if (hiddenMSG.value.length > 0)
            alert(hiddenMSG.value);
            
        hiddenMSG.value = "";            
    }
}


function openGallery(linkparm){
    
    var gallerywindow = window.open("PhotoGallery.aspx?GALLERY=" + linkparm,"gallery","height=800,width=1024");
    gallerywindow.focus();
    return false;
}

function openVideo(linkparm){
    
    window.location.href("VideoDisplay.aspx?FILE=" + linkparm);
//    var videowindow = window.open("VideoDisplay.aspx?FILE=" + linkparm,"video","height=800,width=1024");
    //videowindow.focus();
    return false;
}


