<!--
function openConsol(MyPage,features) {
    if (!window.window2) {
        // has not yet been defined
        window2 = window.open(MyPage,'imagewindow',features);
    }
    else {
        // has been defined
        if (!window2.closed) {
            // still open
            window2.close();
            window2 = window.open(MyPage,'imagewindow',features);

        }
        else {
            window2 = window.open(MyPage,'imagewindow',features);
        }
    }
}

function submit_ecommerce_form(theValue) {

}
//-->
