// Simple browser identification for displaying transparent Flash content
// by Tobias Nilsson (www.tobiasnilsson.cjb.net)

// Get the browser name:
var browserName = navigator.appName; 
var userOS = navigator.platform;
 
// Function to place the Flash content on the webpage depending on the browser and OS:
function browserDetect() {
  if(browserName == "Opera" || userOS == "MacPPC") {
	  // Jump to other page:
	top.location.href = "notrans_index.htm";
  }
}

// Execute the above function:
browserDetect();