


/*********************************/
	/** TO CALL
		go_Cal('#Attributes.Fuse_Root#','CLICK','CLICK');
	**/
function go_Cal(root,form,field)
{

	var date = eval('document.' + form + '.' + field + '.value');
	var URL = root + '/js/calendar/Calendar.cfm?Form=' + form + '&Field=' + field;
	
	if (date.length != 0)
	{
		URL += '&Yr=' + date.substr(6,4);
		URL += '&Mo=' + date.substr(0,2);
		URL += '&Dy=' + date.substr(3,2);
	}

	popIt(URL, 161, 166, 'no', 'no', 'no', 'no');

}