﻿
        function simpleGetForm(id,actionUrl,queryName)
        {
            var o=document.getElementById(id);
            var url=actionUrl+"?"+queryName+"="+encodeURIComponent(o.value);
            window.open(url);
        }
