
// ---------- script properties ----------

var results_location = "";
var page_URL = location.href;
var int_Index;
var int_Results;
var int_Pagini;
//int_Index = page_URL.search('intro.htm');
//int_Results = page_URL.search('results.html');
int_Pagini = location.pathname.indexOf('pagini');
int_Uniforma = location.pathname.indexOf('uniforma');
int_arhivaFoto = location.pathname.indexOf('arhivaFoto');

if (int_Pagini != (-1))
	{
	results_location = "results.html";
	//document.write("pagini: " +int_Pagini+ " uniforma: " + int_Uniforma + " foto: " + int_arhivaFoto + "<br>" + results_location + "<br>");
	}
else if (int_Uniforma != (-1))
	{
		results_location = "../../pagini/results.html";
		//document.write("pagini: " +int_Pagini+ " uniforma: " + int_Uniforma + " foto: " + int_arhivaFoto + "<br>" + results_location + "<br>");
	}
	else if (int_arhivaFoto != (-1))
		{
			results_location = "../../../pagini/results.html";
			//document.write("pagini: " +int_Pagini+ " uniforma: " + int_Uniforma + " foto: " + int_arhivaFoto + "<br>" + results_location + "<br>");
		}
		else	
		{
		results_location = "pagini/results.html";
		//document.write("pagini: " +int_Pagini+ " uniforma: " + int_Uniforma + " foto: " + int_arhivaFoto + "<br>" + results_location + "<br>");
		}
	
/*if ((location.href == "http://" + location.hostname)
	{
	results_location = 	"pagini/results.html";
	}
if (page_URL.pathname == "/index.htm")
	{
	results_location = "pagini/results.html";
	}
else
	{
	results_location = "results.html";
	}*/

/*if (int_Index != (-1))
	{
	results_location = "pagini/results.html";
	}
else
	{
	results_location = "results.html";
	}
*/

// ---------- end of script properties ----------


function search_form(jse_Form) {
	if (jse_Form.d.value.length > 0) {
		document.cookie = "d=" + escape(jse_Form.d.value);
		window.location = results_location;
	}
}
