// JavaScript Document
function submitsearch()
{

	var str =  document.form1.search_str.value;
		
	if(str != "")
		window.location.href ="user-" + str + "-P1.html";
		
	return false; //must return false to ensure the form does not get submit its self		
}