/*
 * util.js - Saurav Saha
 * © Wipro EcoEnergy 2011
 */
 
 ///////////////////////////////////////////// Height manipulation with browser height /////////////////////////////////////////////
 
 
			var myWidth;
			var myHeight;
			
			if( typeof( window.innerWidth ) == 'number' ) { 
			
			//Non-IE 
			
			myWidth = window.innerWidth;
			myHeight = window.innerHeight; 
				
			} else if( document.documentElement && 
			
			( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) { 
			
			//IE 6+ in 'standards compliant mode' 
			
			myWidth = document.documentElement.clientWidth; 
			myHeight = document.documentElement.clientHeight; 
			
			} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) { 
			
			//IE 4 compatible 
			
			myWidth = document.body.clientWidth; 
			myHeight = document.body.clientHeight; 
			
			}
			
			var newmyHeight;
			
			if (myHeight<890) 
				{
					newmyHeight=890;
				}
				else
				{
					newmyHeight=myHeight;
				}
						
				
		
			document.write("<div style='margin: 0 auto 0 auto; position:relative; width:100%; z-index:1; top:0; left:0; height:"+newmyHeight+"px; background-color:#000;'>");
			//document.write("<object data='BG.swf' type='application/x-shockwave-flash' width='100%' height='"+newmyHeight+"'><param name='MOVIE' align='top' value='BG.swf'  name='wmode' value='transparent' /></object></div>");

			document.write("<object id='FlashID' classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width='100%' height='900'>");
			document.write("<param name='movie' value='BG.swf' />");
			document.write("<param name='quality' value='high' />");
			document.write("<param name='wmode' value='opaque' />");
			document.write("<param name='swfversion' value='6.0.65.0' />");
			document.write("<param name='expressinstall' value='Scripts/expressInstall.swf' />");
			document.write("<object type='application/x-shockwave-flash' data='BG.swf' width='100%' height='900'>");
			document.write("<param name='quality' value='high' />");
			document.write(" <param name='wmode' value='opaque' />");
			document.write(" <param name='swfversion' value='6.0.65.0' />");
			document.write("<param name='expressinstall' value='Scripts/expressInstall.swf' />");
			document.write("<div>");
			document.write("<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>");
			document.write("<p><a href='http://www.adobe.com/go/getflashplayer'><img src='http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif' alt='Get Adobe Flash player' width='112' height='33' /></a></p>");
			document.write("</div>");
			document.write("</object>");
			document.write("</object>");
			document.write("</div>");



//++++++++++++++++++++++++++++++++++++++++++++++

