﻿function OpenApplication() {
    var tf = document.forms['aspnetForm'];
    if (!tf) {
        tf= document.aspnetForm;
    }
    window.open(tf.apps[tf.apps.selectedIndex].value, "", "");
}
