// This script is for Support links

var doLoad = 0;                             // Need to load frames?

try
{
    if (self.parent.frames.length == 0)     // If frames collection is empty
    {
        doLoad++;
    }
    else
    {
        // Note: It was found that access to 'name' properity is denied
        //       sometimes (?), so we need to execute this code inside of
        //       'try' block
        if (self.parent.frames[0].name != "left")
        {                                   // If left frame name is not 'left'
            doLoad++;
        }
    }
}
catch(e)
{
    // Error is catched here
}

if (doLoad > 0)                             // If need to load frames
{
    self.parent.location = "http://www.tssc.de/index.htm"+"#"+self.location.protocol+"//"+self.location.host+self.location.pathname;
}

