/***************************************************************
* TDH Feature code
* © 1998-2002
* Topdog Software
* All Rights Reserved
* You are not allowed to modify anything in this Script
****************************************************************
* http://www.thedoghouse.org
*
****************************************************************/
//- --------------------------------------------------------------------------------------------------------------------
// - Goggle is better
function trans(){
document.write('
');
}
//--------------------------------------------------------------------------------------------------------------------
function chooseCSS()
{
peXt = (navigator.userAgent.indexOf("Opera")!=-1 && navigator.userAgent.indexOf("5.")>0) ? "op" : (document.all) ? "ie" : (document.layers) ? "nn" : (!document.all && document.getElementById) ? "mo" : "";
document.write('');
}
//--------------------------------------------------------------------------------------------------------------------
function feedbackMail(){
var webMaster ="feedback" + "@" + "thedoghouse.org"
var mailSubject ="Doghouse - Web Page Feedback"
var mailBody = "RE: " + window.location.href +" "
var TagText ="contact us"
document.write('' + TagText + "");
}
//--------------------------------------------------------------------------------------------------------------------
function breadcrumbs(){
sURL = new String;
bits = new Object;
var titleTag = ""
var x = 0;
var stop = 0;
var FontStart = "";
var FontEnd = "";
var output = "Home » ";
sURL = location.href;
sURL = sURL.slice(8,sURL.length);
chunkStart = sURL.indexOf("/");
sURL = sURL.slice(chunkStart+1,sURL.length)
while(!stop){
chunkStart = sURL.indexOf("/");
if (chunkStart != -1){
bits[x] = sURL.slice(0,chunkStart)
sURL = sURL.slice(chunkStart+1,sURL.length);
}else{
stop = 1;
}
x++;
}
titleTag = " Goto Here!"
for(var i in bits){
output += "" + bits[i] + " » ";
}
document.write(FontStart +output + document.title + FontEnd);
}