﻿<!--
function goto_URL(object) {
  window.location.href = object.options[object.selectedIndex].value;
}


function SubmitSubscription() {
    
    viewState = document.forms[0].__VIEWSTATE;

    if(viewState!=null)
    {
    viewState.name = "__VIEWSTATE_Disabled";
    viewState.value = "";
    }
    
    document.forms[0].name = 'subscription';
    document.forms[0].action = 'http://www.huginonline.com/plsql/try/user_sign_up.subscribe';
    document.forms[0].method = 'post';
    document.forms[0].submit();
}

//-->