
function detectFrameset() 
{
     if (!parent.mainFrame) 
     {
         //alert("Dies ist eine Unterseite meiner Homepage. Bitte drücken sie OK um zur Hauptseite zu gelangen");
         
         g_objPopup.open('popupNoFrameset.htm', 'www.claudia-wieser.de', '300px');

      }
     else
     {
        //alert("running inside a frameset");
     }
}

function checkFramecall()
{
    var szQueryExp=decodeURI(location.search);
    if(szQueryExp.length > 0)
    {
        if (frames.mainFrame.location.pathname.toLowerCase()!=getQuerystring("contentPageURL",szQueryExp).toLowerCase())
        {
             frames.mainFrame.location.href=getQuerystring("contentPageURL",szQueryExp);
        }
    }
}


function getQuerystring(szQuerystring, szQueryExp)
{
    var arrExp;
    var arrVal;
    var szTmpExp;

    //Remove the ?
    szTmpExp=szQueryExp.substr(1);

    //Split the searchstring into searchexpressions
    arrExp=szTmpExp.split("&");

    //Split the expressions into values and return the requested value.
    for (i=0; i<arrExp.length; i++)
    {
        arrVal=arrExp[i].split("=");
        if (arrVal[0]==szQuerystring)
        {
            return (arrVal[1]);
        }
    }
}


