function calendarPicker(strField)
{
	//microsoft.
	if ( (window.navigator.appVersion.indexOf("MSIE")!=-1) && window.showModalDialog )
	{
		var ret = window.showModalDialog( '/templates/rekrytera/DatePicker.aspx', 'DatePicker','status:no; resizable:yes; help:no; dialogWidth:240px; dialogHeight:220px; center:yes;scroll:no;');
		
		if( (document.all[strField] != null) && (ret != null) )
			document.all[strField].value = ret;
	}
	else //Rest of the world.
	{
		//build string with id of form.
		var formid = document.forms[0].id;
		strField = formid+'.'+strField;
		//--
		window.open('/templates/rekrytera/DatePicker.aspx?field=' + strField,'calendarPopup','width=250,height=190,resizable=yes');
	}
}
