function detectUserAgent2()
{
 //alert('helloo');
 var agent=navigator.userAgent.toLowerCase();
 //alert(agent);
 var is_iphone = (agent.indexOf('iphone')!=-1);
 var is_ipad = (agent.indexOf('ipad')!=-1);
 if (is_iphone) { 
	//alert('this is iphone');
   document.getElementById('main-img').innerHTML="<img src='imgs\\rs-iphone-ipad-img.jpg' />";
   document.getElementById('inner-bottom-right').innerHTML="<img src='imgs\\rs-btm-gifani.gif' />";
   
  }
  else if (is_ipad){
	  
	//alert('this is ipad');
	document.getElementById('main-img').innerHTML="<img src='imgs\\rs-iphone-ipad-img.jpg' />";
	document.getElementById('inner-bottom-right').innerHTML="<img src='imgs\\rs-btm-gifani.gif' />";
	
  }
  else
  { // alert('this is not iphone');
     document.getElementById('main-img').innerHTML="<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='483' height='199'> <param name='movie' value='retailsignal_flash_main.swf'><param name='quality' value='high'><param name='wmode' value='transparent'> <param name='menu' value='false'><embed src='retailsignal_flash_main.swf' width='483' height='199' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' wmode='transparent' menu='false'></embed></object>";
	 
	 document.getElementById('inner-bottom-right').innerHTML="<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='268' height='129'> <param name='movie' value='load images.swf'><param name='quality' value='high'><param name='wmode' value='transparent'> <param name='menu' value='false'><embed src='load images.swf' width='268' height='129' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' wmode='transparent' menu='false'></embed></object>";
	
   }
}
