// auto maximize window
function maximize_win() {
top.window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
}

// flash code
function ddc_site(visitors){
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="100%" height="100%">');
    document.write('<param name="movie" value="site.swf?&v='+visitors+'">');
    document.write('<param name="quality" value="high">');
	document.write('<param name="scale" value="noscale">');
	document.write('<param name="salign" value="lt">');
    document.write('<embed src="site.swf?&v='+visitors+'" width="100%" height="100%" quality="high" scale="noscale" salign="lt" allowScriptAccess="sameDomain" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>');			
    document.write('</object>');
}