Goo-O-Matic
Created | Updated Jan 28, 2002
Goo-O-Matic code:
<SCRIPT LANGUAGE="JavaScript">
<!--
var theUrl = location.href
if (document.bgColor!=='#000066'){
if (theUrl.indexOf ("?") >= 0) {
if (theUrl.indexOf ("?skin") >= 0) {
location.href = theUrl.substring(0, theUrl.indexOf ("?") ) + '?skin=classic' ;
}
// don't do anything for other queries, or it might all go horribly wrong
}
else {
if (theUrl.indexOf ("Edit") >= 0) {
alert ( 'Once Updated this entry will be displayed automatically in Classic Goo')
}
else {
location.href = theUrl+'?skin=classic'
}
}
}
// -->
</SCRIPT>