////////////////////////////////////////////////////////////////
//
// script.js
// michael trenkler 
// mt grafik & design - www.puresin.net - mt@puresin.net
// angepasst fuer rauchende colts - spellbound entertainment ag kehl
//
////////////////////////////////////////////////////////////////

// define different browser types

var ns  = (document.layers) ? 1 : 0;
var ie  = (document.all) ? 1 : 0;
var dom = (document.getElementById) ? 1 : 0;
var mac = (navigator.platform.indexOf("Mac") != -1) ? 1 : 0;

// define variable for main section graphic

var status_main = 'news';

// open browser window with options

var optionsPopup = "scrollbars=no,resizable=no,menubar=no,location=no,width=600,height=480";

var optionsAnmeldung = "scrollbars=no,resizable=no,menubar=no,location=no,width=350,height=250";

function openPopup(url)

	{

 	window.open(url, "popup", optionsPopup);
	}
    
function openAnmeldung(url)

	{

 	window.open(url, "popup", optionsAnmeldung);
	}
    

// mouseover functions
              
function rotate_navi (imgName)

    {
    
     document.images[imgName].src= eval(imgName + "_f" + ".src");
 
    }
    
function rotate_navi_r (imgName)

    {
    
    document.images[imgName].src= eval(imgName + ".src");

    }

//  swap url & pointer display function corresponding to user language

function setFocus (URL, subSection)

    {
    
        parent.frames["menue"].document.location.href = "/de_lb/nav/nav_" + URL + ".php";
        
        parent.frames["content"].document.location.href = "/de_lb/" + URL + "/" + URL + "_" +  URL + ".php";
        
        parent.frames["top_display"].document.location.href = "/de_lb/top/top_" + URL + "_" + URL + ".php";
        
     }    
     
function setFocusExt (URL, subSection)

    {
    
        parent.frames["menue"].document.location.href = "/de_lb/nav/nav_" + URL + ".php";
        
        parent.frames["content"].document.location.href = "/de_lb/" + URL + "/" + URL + "_" +  subSection + ".php";
        
        parent.frames["top_display"].document.location.href = "/de_lb/top/top_" + URL + "_" + subSection + ".php";
        
     }        
     
function setURL (URL, subSection)

    {
    
        parent.frames["content"].document.location.href = "/de_lb/" + URL + "/" + URL + "_" +  subSection + ".php";
        
        parent.frames["top_display"].document.location.href = "/de_lb/top/top_" + URL + "_" + subSection + ".php";
        
     }         

// add favorites

function addFavs()

	{
	
	if (window.external)
	
		{
	    
		window.external.AddFavorite(location.href,document.title);
		
		}

	}

// set Startpage
	
function setStart()

	{
	
	var oHomePage = 'www.rauchendecolts.com';
	
	oHomePage.setHomePage('www.rauchendecolts.com');
	
	event.returnValue = false;
 	
	}
 
	 

