﻿//----------------------------------------------------------------------------------------------
// Global Variables
//----------------------------------------------------------------------------------------------
var strPrefix = "";

//----------------------------------------------------------------------------------------------
// Page loading events
//----------------------------------------------------------------------------------------------
strPrefix = $get("MainArea").getElementsByTagName("TABLE")[0].id.replace("DataListArea", "");
$get(strPrefix + "EmailUs_lnkEmailUs").style.display = "none";


//----------------------------------------------------------------------------------------------
// Private Functions
//----------------------------------------------------------------------------------------------
function emailClick(argEmailAccount, argPopTitle) {
    window.top.crossWindowParam = argEmailAccount + ";" + argPopTitle;
    OpenEmailUsWindow();
    //InitEmailUsForm(argEmailAccount, argPopTitle);
    //$find($get("hidPrefixInEmailUs").value + "ModalEmailUs").show();
}


