<!-- Begin
var color		= "CC0066"	
var flashheight		= "60"		
var flashwidth		= "750"		
var showdate		= "yes"		
var stripes	 	= "yes"	

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%" BGCOLOR="#'+color+'"><tr><td align="left">');
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" id="5">');
document.write('<PARAM NAME="movie" VALUE="5.swf">');
document.write('<PARAM NAME="quality" VALUE="high">');
document.write('<PARAM NAME="wmode" VALUE="transparent">');
document.write('<PARAM NAME="bgcolor" VALUE=#'+color+'>');
document.write('<EMBED src="5.swf" quality="high" wmode="transparent" bgcolor=#'+color+' WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" NAME="logo" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT><br>');
document.write('</td></tr></table>');
// DATE
 if (showdate == "yes") {

document.write('<div id="date-location">');
var d=new Date()
var weekday=new Array("Воскресенье","Понедельник","Вторник","Среда","Четверг","Пятница","Суббота")
var monthname=new Array("января","февраля","марта","апреля","мая","июня","июля","августа","сентября","октября","ноября","декабря")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + ", ")
document.write(d.getDate() + " ")
document.write(monthname[d.getMonth()] + ", ")
document.write(d.getFullYear() + " года")
document.write("</nobr><br></span>")
document.write('</div>');

}
//  End -->