function s(req,str) {
	var qForm = document.forms['seo_form'];
	if (qForm!=null) {
		if (req=='curPage') {
			qForm.elements['curPage'].value = str;
		}
	}
	qForm.submit();
}

