  $(document).ready(function(){
    $("#location_form").submit(function(){
        newurl=$("#location").val();
        newurl+= '?SQ_CALENDAR_DATE=' + DateConvert2MySQL(1, js_calendar_cal.month + 1, js_calendar_cal.year);
        if (newurl!= "")
        {window.open(newurl,'_top','')
        }; 
     return false;
    });

$('#SQ_LOGIN_USERNAME').focus(function(e) { 
e.preventDefault(); 
}); 


    $("#email_this").click(function(){
	var messageText = 'Hello, I found a great web page at ' + window.location;
	var subjectText = 'Check out this Website';
	var email = prompt("Enter your friend's email address:", '');
    window.location = 'mailto:' + email +
      '?subject=' + encodeURIComponent(subjectText) +
      '&body=' + encodeURIComponent(messageText);
    return false;
    });

  });
