function showflash(f,w,h,bgc)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="' + w + '" height="' + h + '" id="page" align="middle">\n');
	document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
	document.write('<param name="movie" value="' + f + '"/>\n');
	document.write('<param name="quality" value="high"/>\n');
	document.write('<param name="bgcolor" value="' + bgc + '"/>\n');
	document.write('<param name="wmode" value="transparent"/>\n');
	document.write('<embed src="' + f + '" quality="high" bgcolor="' + bgc + '" width="' + w + '" height="' + h + '" name="page" wmode="transparent" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n')
	document.write('</object>\n');
}

function MailGuard(mailbox,domain)
{
	str = "<a href='mailto:"+mailbox+"@"+domain+"'>"+mailbox+"@"+domain+"</a>";
	document.write(str);
}

function _getDate()
{
	dateObj = new Date();
	DayIndex = dateObj.getDay();
	_Year = dateObj.getYear();
	MonthIndex = dateObj.getMonth();
	_Date = dateObj.getDate();
	var yom="יום";

	DaysofWeek = new Array()
	DaysofWeek[0]="ראשון";
	DaysofWeek[1]="שני";
	DaysofWeek[2]="שלישי";
	DaysofWeek[3]="רביעי";
	DaysofWeek[4]="חמישי";
	DaysofWeek[5]="שישי";
	DaysofWeek[6]="שבת";

	Months = new Array()
	Months[0]="בינואר";
	Months[1]="בפברואר";
	Months[2]="במרץ";
	Months[3]="באפריל";
	Months[4]="במאי";
	Months[5]="ביוני";
	Months[6]="ביולי";
	Months[7]="באוגוסט";
	Months[8]="בספטמבר";
	Months[9]="באוקטובר";
	Months[10]="בנובמבר";
	Months[11]="בדצמבר";

	dayString = " יום " +  DaysofWeek[DayIndex] + " " +  _Date + " "  + " " + Months[MonthIndex]  + " " + _Year;
	document.write(dayString);
}
