﻿function doAction( strAction, strActionValue ) {
    //  Set the action.
    document.getElementById( "action" ).value = strAction;
    document.getElementById( "actionvalue" ).value = strActionValue;

    //  Submit the form.
    document.getElementById( "aspnetForm" ).submit();
}

function enlargeImage( strImageURL ) {

    //  Open new window.
    var objWinbdow = window.open( "http://www.4x90streets.com/Enlarge-Image.aspx?url=" + strImageURL, "image", "status=0, toolbar=0, menubar=0, directories=0, resizable=0, scrollbars=0, height=520, width=520" );
    objWinbdow.focus();
}

function swapImage( strID, strMode ) {
    var objImage = document.getElementById( strID );

    objImage.src = "http://www.4x90streets.com/media/images/nav/nav_" + strID + "_" + strMode + ".gif";
}

function swapProduct( strFilename ) {
    var objProductLarge = document.getElementById("large");
    
    objProductLarge.innerHTML = "<img src='http://www.4x90streets.com/media/product-images/" + strFilename + "' height='440' width='440' class='largeprodimg' />"
}

function openTerms() {

    //  Open new window.
    var objWindow = window.open( "http://www.4x90streets.com/Terms.aspx", "name", "scrollbars=1, height=600, width=940" );
    objWindow.focus();
}
