﻿// JScript File
function flip(divId)
{
    var div = document.getElementById(divId);

    if (div.style.display == 'none')div.style.display = 'block';
    elsediv.style.display = 'none';
}

function ShowElement(divId)
{
    var div = document.getElementById(divId);

    div.style.display = 'inline';
}

function ShowTblRow(divID)
{
    var div = document.getElementByID(divID);
    
    div.style.display = 'table-row';
}

function HideTblRow(divID)
{
    var div = document.getElementByID(divID);
    
    div.style.display = 'none'
}

function HideElement(divId)
{
    var div = document.getElementById(divId);

    div.style.display = 'none';
}
function NewsLetter() 
{
    window.open('popUpNewsLetter.html','NewsLetter',	'toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=yes,copyhistory=no,scrollbars=no,width=495,height=435');
}
function RequestInfo() 
{
    window.open('popUpRequestInfo.html','RequestInfo',	'toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=yes,copyhistory=no,scrollbars=no,width=495,height=585');
}
function Feedback() 
{
    window.open('popUpFeedback.html','RequestInfo',	'toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=yes,copyhistory=no,scrollbars=no,width=495,height=460');
}
function Privacy() 
{
    window.open('popUpPrivacy.html','Privacy',	'toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=525,height=460');
}