<!--
function unhidePopup( )
{
	if (document.getElementById)
	{
	var style2 = document.getElementById("Popup").style;
	var style4 = document.getElementById("image_1").style;
	style2.display = "block";
	style4.display = "block";
	style4.background = "#fff url(images/popup/popUp_03.jpg) no-repeat";
	}
}

function hidePopup( )
{
	if (document.getElementById)
	{
	var style2 = document.getElementById("Popup").style;
	var style4 = document.getElementById("image_1").style;
	style2.display = "none";
	style4.display = "none";
	}
}

//-->

