// JavaScript Document
//Form handler for new windows

function formHandler(form){
    var URL = document.Sform.Ssite.options[document.Sform.Ssite.selectedIndex].value;
    var site = URL + document.Sform.Q_text.value;
    window.open(site,"mf");
    }
