function _strip(str)
{
	str = str.replace(new RegExp("'", 'g'), '%27');
	str = str.replace(new RegExp('"', 'g'), '%22');
	str = str.replace(new RegExp('<', 'g'), '%3C');
	str = str.replace(new RegExp('>', 'g'), '%3E');
	str = str.replace(new RegExp('/', 'g'), '%2F');
	return str;
}

function src1()
{
	window.location = '?games/s/' + _strip(document.getElementById('_search1').value);
}

function src2()
{
	window.location = '?games/p/' + document.getElementById('_pl').value + '/c/' + document.getElementById('_cat').value + '/sh/' + document.getElementById('_bg').value + '/s/' + _strip(document.getElementById('_search2').value);
}
