//<!--//

function checkForm()
{
var selected = window.document.navForm.navMenu.selectedIndex;
window.document.navForm.navMenu.selectedIndex = 0;
parent.window.location.href = window.document.navForm.navMenu.options[selected].value;
}

function clearField(theField){
        theField.value="";
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/*
var g_platinum = 1;
var g_gold = 1;
var g_silver = 1;  // 1=details, 2=summary
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
window.onload = init;
function init() {
    productsInit();
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function productsInit() {
        onPlatinumDetailsClicked();
        onGoldDetailsClicked();
        onSilverDetailsClicked();                
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function onPlatinumDetailsClicked() {
    g_platinum = 1;
    document.getElementById('platinum_details').style.display = 'inline';
    document.getElementById('platinum_summary').style.display = 'none';
    document.getElementById('platinum_details_tabimage').src = 'images/products_platinum-over_03.gif';
    document.getElementById('platinum_summary_tabimage').src = 'images/products_platinum_04.gif';
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function onPlatinumSummaryClicked() {
    g_platinum = 2;
    document.getElementById('platinum_details').style.display = 'none';
    document.getElementById('platinum_summary').style.display = 'inline';
    document.getElementById('platinum_details_tabimage').src = 'images/products_platinum_03.gif';
    document.getElementById('platinum_summary_tabimage').src = 'images/products_platinum-over_04.gif';
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function onGoldDetailsClicked() {
    g_gold = 1;
    document.getElementById('gold_details').style.display = 'inline';
    document.getElementById('gold_summary').style.display = 'none';
    document.getElementById('gold_details_tabimage').src = 'images/products_gold-over_03.gif';
    document.getElementById('gold_summary_tabimage').src = 'images/products_gold_04.gif';
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function onGoldSummaryClicked() {
    g_gold = 2;
    document.getElementById('gold_details').style.display = 'none';
    document.getElementById('gold_summary').style.display = 'inline';
    document.getElementById('gold_details_tabimage').src = 'images/products_gold_03.gif';
    document.getElementById('gold_summary_tabimage').src = 'images/products_gold-over_04.gif';
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function onSilverDetailsClicked() {
    g_silver = 1;
    document.getElementById('silver_details').style.display = 'inline';
    document.getElementById('silver_summary').style.display = 'none';
    document.getElementById('silver_details_tabimage').src = 'images/products_silver-over_03.gif';
    document.getElementById('silver_summary_tabimage').src = 'images/products_silver_04.gif';
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function onSilverSummaryClicked() {
    g_silver = 2;
    document.getElementById('silver_details').style.display = 'none';
    document.getElementById('silver_summary').style.display = 'inline';
    document.getElementById('silver_details_tabimage').src = 'images/products_silver_03.gif';
    document.getElementById('silver_summary_tabimage').src = 'images/products_silver-over_04.gif';
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function onPlatinumClick(platinum) {
    if (platinum == 1) {
        onPlatinumDetailsClicked();
    }
    else if (platinum == 2) {        
        onPlatinumSummaryClicked();
    }
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function onPlatinumOut(platinum) {
    if (platinum == 1 && g_platinum != 1) {
        document.getElementById('platinum_details_tabimage').src = 'images/products_platinum_03.gif';
    }
    else if (platinum == 2 && g_platinum != 2) {
        document.getElementById('platinum_summary_tabimage').src = 'images/products_platinum_04.gif';
    }              
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function onGoldClick(gold) {
    if (gold == 1) {
        onGoldDetailsClicked();
    }
    else if (gold == 2) {        
        onGoldSummaryClicked();
    }
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function onGoldOut(gold) {
    if (gold == 1 && g_gold != 1) {
        document.getElementById('gold_details_tabimage').src = 'images/products_gold_03.gif';
    }
    else if (gold == 2 && g_gold != 2) {
        document.getElementById('gold_summary_tabimage').src = 'images/products_gold_04.gif';
    }              
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function onSilverClick(silver) {
    if (silver == 1) {
        onSilverDetailsClicked();
    }
    else if (silver == 2) {        
        onSilverSummaryClicked();
    }
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function onSilverOut(silver) {
    if (silver == 1 && g_silver != 1) {
        document.getElementById('silver_details_tabimage').src = 'images/products_silver_03.gif';
    }
    else if (silver == 2 && g_silver != 2) {
        document.getElementById('silver_summary_tabimage').src = 'images/products_silver_04.gif';
    }              
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// -->
*/