﻿
function top()
{
    window.location.href = window.location.href.split('#')[0];
}

/*========================================================================================
Active Link
//======================================================================================*/



//========================================================================================
//  End Active Link
//========================================================================================


//========================================================================================
//  DHTML Windows
//========================================================================================

function FlashPopUpWin(title, url, width, height)
{
    var winwidth = width + 20;
    var winheight = height + 20;
    dhtmlwindow.open(title, "iframe", ('video.htm?link='+url+'&width='+width+'&height='+height), title, "width="+winwidth+"px,height="+winheight+"px,resize=0,scrolling=0,center=1", "recal")
}

//========================================================================================
//  End DHTML Windows
//========================================================================================

//========================================================================================
//  Toggle Hide/Show
//========================================================================================

function toggle(targetID) {
    if (document.getElementById) {
        targetID = document.getElementById(targetID);
        if (targetID.style.display == "none") {
            targetID.style.display = "";
        }
        else{
            targetID.style.display = "none";
        }
    }
}

