
function turnOn(dname) {
	document.getElementById(dname).style.visibility = "visible";
}
function turnOff(dname) {
	document.getElementById(dname).style.visibility = "hidden";
}
function changeToBold(dname){
    document.getElementById(dname).style.fontWeight = "bold";
}
function changeBackNotBold(dname){
    document.getElementById(dname).style.fontWeight = "normal";
}

function openWindow (url)
{
    obj = window.open(url);
    obj.focus();
}
// popup- window configuration

// only show popup if ShowPopup = 1  
var ShowPopup

function setShowPopup(bool)
{
    ShowPopup = bool 
}

function setHRef(dpopup,dhref)
{
    document.getElementById(dpopup).setAttribute("src", dhref, 0);
}

function showFrame(dname)
{
	if (ShowPopup==1)
	{
        document.getElementById(dname).style.visibility = "visible";
	}
	else
	{
	    document.getElementById(dname).style.visibility = "hidden";
	}
}

function hideFrame(dname) 
{
	parent.document.getElementById(dname).style.visibility = "hidden";
}

