$(document).ready(function(){

	svalue = "";
	snewvalue = "";
  first=true;

    $("#inpsearch").focus(function () {
      if (first)
      {
		    svalue = $(this).val();
		    $(this).val("");
		    first=false;
		  }  
    });
    $("#inpsearch").blur(function () {
		snewvalue = $(this).val();
		if (svalue != "" && snewvalue == "") {
			$(this).val(svalue);
		}
    });
	
});

function submitform() {
  window.open("", "formPopup", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,height=200,width=500,toolbar=no,left=350,top=250", true); 
  document.getElementById('subscription').target='formPopup';
  document.getElementById('subscription').submit();  
  /*document.sub_form.target='formPopup';
  document.sub_form.submit();   */
}

