var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// ------------------------------------------------------------------------------------
// crossbrowser - submit form
// ------------------------------------------------------------------------------------
function submitform(f)
{
//de schimbat-testat ptr NS
var mf = InternetExplorer ? "document.all.": "window.document.";
mf=eval(mf+f);
mf.submit();
}
// ------------------------------------------------------------------------------------
// displayJobs(cat_id)
// redirect page to jobs list, based on a category id
// ------------------------------------------------------------------------------------
function displayJobs(cat_id)
{
		reDirect("/vacancies/displayjobs.asp?cat_id=" + cat_id);
}
// ------------------------------------------------------------------------------------
// redDirect(url)
// redirect page to url
// ------------------------------------------------------------------------------------
function reDirect(url)
{
	document.location = url;
}