<!--

function getbrowser()
	
	{

//Browser Name
var browser = navigator.appName;
 
//Browser description - what browser and platfor you're using if interested
//var description = navigator.userAgent;
 
//Display the details (if you want to see what you're using before a redirect)
//alert(browser + "\n\n" + description);
 
//   09/12/2008  if not IE, dualFade = 0
if (browser == "Microsoft Internet Explorer"){
  document.form1.btype.value=1;
} else {
  document.form1.btype.value=0;
}
document.write
//alert(document.form1.btype.value)

	}
//-->

