<!-- 
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="627" height="150"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="http://www.canterbury.ac.nz/flash/home.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />'
    + '<embed src="http://www.canterbury.ac.nz/flash/home.swf" quality="high" bgcolor="#ffffff" '
    + 'width="627" height="150" name="20090805" align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = '<p><strong>Features:</strong></p>'
	+ '<ul>'
	
	  + '<li><a href="http://www.canterbury.ac.nz/support/welcome/index.shtml">International Welcome event details and registration</a></li>'
	  + '<li><a href="http://www.canterbury.ac.nz/enrol/">You can still enrol - apply now or call 0800 827 748</a></li>'
	  + '<li><a href="http://www.comsdev.canterbury.ac.nz/rss/news/?feed=news&articleId=240">UCSA Events Centre opening soon</a></li>'
	  + '<li><a href="http://www.communityed.canterbury.ac.nz/">Enrol for Community Education online now</a></li>'
	  + '<li><a href="http://www.canterbury.ac.nz/enrol/">You can still enrol - apply now or call 0800 827 748</a></li>'
	   + '<li><a href="http://www.canterbury.ac.nz/orientation/">Orientation 2012</a></li>'
	<!--  + '<li><a href="http://www.canterbury.ac.nz/whyuc/accommodation/guarantee.shtml">UC Guarantee 2012</a></li>' -->
	 <!-- + '<li><a href="http://www.comsdev.canterbury.ac.nz/rss/news/index.php?feed=news&articleId=240">February opening for new UCSA Centre</a></li>' -->
     
	  <!-- + '<li><a href="http://www.canterbury.ac.nz/quakeappeal">Earthquake Scholarships Appeal</a></li>' -->
	
	+ '</ul>'
  	+ '<p>To view the above as graphical content, you need to <a href=http://www.macromedia.com/go/getflash/>download Macromedia Flash Player.</a></p>'
    document.write(alternateContent);  // insert non-flash content
  }
// -->



