

<!--
            
////////////// functions for zoo documents /////////////////////////////////////////////


//for opening / reloading the player window

function openMOTW(URL) {
   var pathURL = "http://new.sodaplay.com/constructor/" + URL;
   parent.document.location=pathURL;
}

//for displaying the model & username in the topframe's input box

function displayInfo(info) {
    if ( parent.frames['zootop'].document.displayForm ) {
        parent.frames['zootop'].document.displayForm.display.value = info;
    }
}

//for changing the date in the topframe's select box - called by 'onLoad' in the body tag

function changeDate(dateIndex) {
    if ((parent.frames['navigation'] == null) && (parent.frames['navigationsilent'] == null)) {
        var newDateIndex = parent.frames['zootop'].document.displayForm.modelselect.length - dateIndex;
    
        if(newDateIndex >= 0) {
        parent.frames['zootop'].document.displayForm.modelselect.selectedIndex = newDateIndex;
        }
    }
}
            
//-->

