// Wenn kein Frameset, dann gehe zu index.html - - - - - - - - - - - - - - - - - - - - - - - - 
/*
function redirect_url() {
   top.location= "http://www.chris-tough.de/index.html";
}
if (top.frames.length==0) {
     setTimeout('redirect_url()',200);
}
*/
// Allgmeine Funktionen - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
function close_window() {
    window.close();
}

function drucken() {
    window.print();
}

function mehr(url) {
   newwin = window.open(url,'Ladevorgang','toolbar=0,menubar=0,location=0,status=0,scrollbars=1,resizable=1,width=500,height=450,top=100,left=100'); 
   setTimeout('newwin.focus();',200); 
}

function tadaaa(pfad) {
	var breite = 600;
	var hoehe = 500;
	var links = (window.screen.availWidth-breite)/2;
	var oben = ((window.screen.availHeight-hoehe)/2)-50;
	newwin = window.open(pfad,'lade','toolbar=0,menubar=0,location=0,status=0,scrollbars=1,resizable=1,width='+breite+',height='+hoehe+',top='+oben+',left='+links); 
	setTimeout('newwin.focus();',200); 
}

function baustelle(){
    alert("Dieser Bereich befindet sich noch im Aufbau und wird erst in Kürze erreichbar sein.");
}

/*
function varUebergabe(args){
	var wohin = args;
	parent.topframe.window.document.topmovie.SetVariable("wohin", wohin);
}
*/

function bildwechsel(bildnr,bildobjekt){
   bildpfad = new Image(); 
   bildpfad.src = bildobjekt; 
   window.document.images[bildnr].src = bildpfad.src;
}
