function swapImage(name, newSrc) {

    var theImage = false;
    if (document.images) {
        theImage = document.images[name];
    }

    if (theImage) {
        theImage.src = newSrc;
    }
}


function openNew(URL) 
	{

window.open( URL,"sub","width=630,height=500,scrollbars=yes,location=no,resizable=no,directories=no,status=0,menubar=0,toolbar=no,right=50,top=50");	
	}

// Fill status line
function fillStatus(txt)
{
self.status = txt
}
function emptyStatus()
{
self.status = ""
}

function changeParent(strURL)
{	
	parent.opener.location.href=strURL;
}

