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].options[document.forms[ft].elements[fy].selectedIndex].value = y;
	
	my_options = document.forms[ft].elements[fy].options;
	for(var i=0; i<my_options.length; i++) {
		if(my_options[i].value==y) {
			document.forms[ft].elements[fy].selectedIndex = i;
		}
	}
	
}
