var flash_load1 = false;
function dropHideElementSELECT(elmID)
{
	for (i=0; i<document.all.tags(elmID).length; i++)
	{
		obj=document.all.tags(elmID)[i];
		if (!obj || !obj.offsetParent) continue;
		obj.style.visibility = "hidden";
	}

}
function dropHideElementFlash(elmID)
{
	for (i=1; i<document.all.tags(elmID).length; i++)
	{
		obj=document.all.tags(elmID)[i];
		if (!obj || !obj.offsetParent) continue;
		obj.style.visibility = "hidden";
	}

}

function dropShowElementSELECT(elmID)
{
	for (i=0; i<document.all.tags(elmID).length; i++)
	{
		obj=document.all.tags(elmID)[i];
		if (!obj || !obj.offsetParent) continue;
		obj.style.visibility = "";
	}
}
function dropShowElementFlash(elmID)
{
	for (i=1; i<document.all.tags(elmID).length; i++)
	{
		obj=document.all.tags(elmID)[i];
		if (!obj || !obj.offsetParent) continue;
		obj.style.visibility = "";
	}
}

function outbanner_DoFSCommand(command, args) {
if (command == "doclose1") {
		 IEhide();

	}

}

function IEhide()
{
document.getElementById('hi11').style.visibility="hidden";
		dropShowElementSELECT("SELECT");
		//The following function (OBJECT) is the flash hide function
		dropShowElementFlash("OBJECT");
		}

function IEshow()
{
document.getElementById('hi11').style.visibility="visible";
}

function send(url) {
props=window.open(url, 'poppage', 'toolbars=0, scrollbars=0, location=0, statusbars=0, menubars=0, resizable=0, width=350, height=345, left = 150, top = 50');
}