function showDownload (bool)
{

	//alert("showDownload " + bool);
	if (document.createElement && document.getElementsByTagName)
	{
		var target = document.getElementById("badgeBox");
		if (target)
		{
			target.style.display = bool ? "block" : "none";
		}
		else
		{
			document.getElementById("SWFObjectExprInst").style.display = bool ? "block" : "none";
		}
	}
}

function urlRequest(url)
{
	var target = document.getElementById("linker");
	target.data = url;
	var divHTML = document.getElementById("pageHTML");
	divHTML.style.display = "block";
}

function openPopUp(theURL,winName,features) {
	window.open(theURL,winName,features);
}

function openWindow (url, title, arguments ) // arguments: status, toolbar, location, menubar, directories, resizable, scrollbars, height, width
{
	window.open(url, title, arguments);
	//javascript:openWindow("http://www.dhl-france.com/fita/order_furniture/index.htm","furnitures","menubar=no, status=no, scrollbars=no, menubar=no, width=594, height=590");
}








