<!-- 
//
// Type the number of images you are rotating.
NumberOfImagesToRotate = 8;

// Specify the first and last part of the image tag. 
FirstPart = '<img src="cs_images/sydney_atoz';
LastPart = '.jpg" height="130" alt="Sydney A to Z your traveling guide to Sydney" width="800">';

function printImage() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
document.write(FirstPart + r + LastPart);
}


   function launchwin(winurl,winname,winfeatures)
     {
      newwin = window.open(winurl,winname,winfeatures);
      newwin.focus();
     }


// refresh web page	 
 function reFresh() {
  location.reload(true)
}

function SelectStyle(){
   if(navigator.appName == "Microsoft Internet Explorer")
   {
    document.write("<link rel='stylesheet' type='text/css' href='/cs_style/style_ie.css' media='screen, tv, projection'>");
   }
   else
   {
    document.write("<link rel='stylesheet' type='text/css' href='/cs_style/style_other.css' media='screen, tv, projection'>");
    document.write("<link rel='stylesheet' type='text/css' href='/cs_style/print_other.css' media='print'>");
   }
}

function addbm(){
if (document.all)
window.external.AddFavorite("http://www.sydneyatoz.com.au","Sydney Tourist Guide")
}

//-->

