// JavaScript Document
// JavaScript Document
		var h = 0;
		
		if(screen.width == 800 && screen.height == 600) 
			h = 150;
		else if(screen.width == 1024 && screen.height == 768) 
			h = 220;
		else if(screen.width == 1280 && screen.height == 1024) 
			h = 280;
		else if(screen.width == 1680 && screen.height == 1050) 
			h = 350;
		else if(screen.width == 1440 && screen.height == 900) 
			h = 310;
		else
			h = 280;
		
		document.write(' <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="100%" height="' + h + '"><param name="movie" value="/flash/titleEn.swf"><param name="quality" value="high"><embed src="/flash/titleEn.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100%" height="' + h + '"></embed></object>');

