<!--
function showCategoryDescriptorOnSubPages(n, highlightCell){
document.getElementById("topLinksSubPagesTipsCell").innerHTML = categoryTips[n];
if (highlightCell){
document.getElementById('linkCell' + n).style.background = "#666666";
}
}
function hideCategoryDescriptorOnSubPages(n, normaliseCell){
document.getElementById("topLinksSubPagesTipsCell").innerHTML = '';
if (normaliseCell){
document.getElementById('linkCell' + n).style.background = "#999999";
}
}
function externalURL( url ){
var urlToLoad = escape(url);
urlToLoad = "http://www.sydneyontheweb.com/cgi-bin/externalLink.py?url=" + urlToLoad;
goTo( urlToLoad, "new" );
}
/***********************************************
* Left Menu functions - Ajmal Saifudeen
***********************************************/
function doMenu( menuName ){
el = document.getElementById(menuName);
el1 = document.getElementById(menuName + "_header");
if (el.style.display == 'none'){
el.style.display = '';
el1.style.backgroundImage = "url(" + baseFolder + "/images/gif/close_branch.gif)";
}
else{
el.style.display = 'none';
el1.style.backgroundImage = "url(" + baseFolder + "/images/gif/open_branch.gif)";
}
}
function emailCCToFriend(){
var mail_str = "mailto:?subject=Check out the Currency Converter @ SydneyOnTheWeb - Sydney Hotels, Travel Insurance, Car Hire, Things to do.";
mail_str += "&body=I thought you might be interested in this website I found: Sydney Hotels, Sydney Accommodation, Maps, Hostels, Travel Insurance, Car Hire Australia. You can view it at, <a href=\"http://www.SydneyOnTheWeb.com/\">http://www.SydneyOnTheWeb.com</a>";
location.href = mail_str;
}
-->
