function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//

function navInit(){
	if (nActive) document.getElementById(nActive).className = 'active';
}
function inputFocus(f, v) {
	if(f.value == v){
		f.value="";
	}
}
function navPath() {
	nStr = document.location.href;
	nStr = nStr.substr(nStr.indexOf(".at/")+4);
	nStr = nStr.split("/");
	nStr.pop();
	nPath = '';
	while(nStr.length>0){
		i = nStr.length-1;
		if(nStr[i] != "home"){
			nPath = ' // <a href="/'+nStr.join("/")+'">'+nStr[i].substr(0,1).toUpperCase()+nStr[i].substr(1)+'</a>'+nPath;
		}
		nStr.pop();
	}
	//if(nPath != ""){
		nPath = '<a href="/" target="_top" title="Agentur Streb">Home</a>'+nPath;
	//}
	//nStr = nStr.join(" // ");
	document.write(nPath);
}
function pagePrint(){
	if(self.print) self.print();
}

if (self.parent.frames.length == 0){
	self.parent.location="http://www.streb.at/index.php?jumpURL="+escape(document.location);
}