function getFormDate(link,ft,fm,fd,fy) {
	window.open(link+"?ft="+ft+"&fm="+fm+"&fd="+fd+"&fy="+fy,'Calendar','width=168,height=205,titlebar=no,menubar=no,scrollbars=no');
}
function setFormDate(ft,fm,fd,fy,m,d,y)	{
	document.forms[ft].elements[fm].selectedIndex = m;
	document.forms[ft].elements[fd].selectedIndex = d;
	document.forms[ft].elements[fy].selectedIndex = y-2001;
}