/*
 * Copyright (c) 2007 by ePublishing
 *   All rights reserved.
 *
 * Author: Robert James Kaes <rkaes@ePublishing.com>
 *
 * Purpose:
 *
 */

$(document).ready(function(){

    // Highlight any field errors
    $("span.form-field-error").each(function(){
        $(this).prev().css({border: "2px solid #bf0a30"});
        $(this).hide(); // remove the "* Missing" label
    });


    // Add the onchange event to the magazine subscription dropdown and remove
    // the "Go" button.
    $('#magazine-sites').change(function(){
        if (this.value && this.value.match(/^http/i)) {
            //location.href = this.value;
 		window.open (this.value,"mywindow");
            return true;
        }
        return false;
    });
    $('#magazine-sites-go').hide();

});
