﻿// JScript File

function ShowHomePageTab(tabName)
{
    document.getElementById('JumbomailText').style.display = 'none';
    document.getElementById('BusinessText').style.display = 'none';
    document.getElementById('PrivateText').style.display = 'none';
    document.getElementById('JumbomailTitle').className = 'Tab';
    document.getElementById('BusinessTitle').className = 'Tab';
    document.getElementById('PrivateTitle').className = 'Tab';
    
    document.getElementById(tabName +'Text').style.display = 'block';
    document.getElementById(tabName + 'Title').className = 'Tab_On';
}

function DisplayFlashObj(ObjName, ObjWidth, ObjHeight, ObjBG)
{
    //alert(ObjBG);
    document.open();
    document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='" + ObjWidth + "' height='" + ObjHeight + "' id='galleryMessy' align='middle'>");
    document.write("<param name='allowScriptAccess' value='sameDomain' />");
    document.write("<param name='movie' value='" + ObjName + "' />");
    document.write("<param name='quality' value='high' />");
    document.write("<param name='wmode' value='" + ObjBG  +"' />");
    document.write("<param name='bgcolor' value='" + ObjBG + "' />");
    document.write("<embed src='" + ObjName + "' quality='high' bgcolor='" + ObjBG + "' width='" + ObjWidth + "' wmode='transparent' height='" + ObjHeight + "' name='sliderFader' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
    document.write("</object>");
    document.close();
}
