
//////////////////////////////

function highlightButton(s)
{
	event.srcElement.className=s
}

//////////////////////////////

function UpDateItem(Id,FromFile,ToFile,width,height)
{
	var MyValue = window.showModalDialog('dialog.asp?dialog='+FromFile+'?Id='+Id,'','dialogWidth:'+width+'px; dialogHeight:'+height+'px; status:no; scroll:no');
	if (MyValue=='1')
	{
		window.location.href=ToFile;
	}
}

//////////////////////////////

function SetCalendar(Field)
{
	if (eval('!MyForm.'+Field+'.disabled'))
	{
		var calWin =window.open('GetDate.asp?Field='+Field,'cal','dependent=yes,width=180,height=200,screenX=600,screenY=190,left=350,top=300,titlebar=yes'); 
		calWin.focus();
	}
	return;
}

//////////////////////////////

function SetDate(DateName,DayName,MonthName,YearName)
{
		var mystr=""
		mystr=mystr+" if (MyForm."+DayName+".value!=\'\' & MyForm."+MonthName+".value!=\'\' & MyForm."+YearName+".value!=\'\')"
		mystr=mystr+" { MyForm."+DateName+".value=MyForm."+DayName+".value+\"/\"+MyForm."+MonthName+".value+\"/\"+MyForm."+YearName+".value; }"
		mystr=mystr+" else ";
		mystr=mystr+" {MyForm."+DateName+".value=\'\';}"
		mystr=mystr+" //alert(MyForm."+DateName+".value);"
		eval(mystr);
}

//////////////////////////////
