// <!CDATA[
var type=1;
function submitenter(myfield,e)
{
var keycode;
if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
else return true;

if (keycode == 13)
   {
   btn_srch_onclick();
   return false;
   }
else
   return true;
}
function btn_srch_onclick() 
{
    if(document.getElementById("txt_srch").value!="")
    {
    document.location="http://www.blueskymapshop.com/start.aspx?type="+type+"&value="+document.getElementById("txt_srch").value; 
    }
}
function rdo_1_onclick() {type=1;}
function rdo_2_onclick() {type=2;}
function rdo_3_onclick() {type=3;}
function rdo_4_onclick() {type=4;}

// ]]>