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-1;
	document.forms[ft].elements[fd].selectedIndex = d-1;
	document.forms[ft].elements[fy].selectedIndex = y-2007;

}