/* SCRIPTS ARTHESIS


*/
function showHideZoom(argStat, urlZoom, urlDetail)
{
	switch(argStat)
	{
		case true :
			document.getElementById("zoomWin").style.left = (document.body.clientWidth/2)-210;
			document.getElementById("zoomWin").style.top = document.body.scrollTop+((screen.height/2)-250);
			document.getElementById("zoomWin").style.display = "block";
		break;
		case false :
			document.getElementById("zoomWin").style.display = "none";
		break;
	}
	document.getElementById("imgZoom").src = urlZoom;
	document.getElementById("srcIframeZoom").src = urlDetail;
}

function initHide(id)
{
	document.getElementById(id).style.display = "none";
}

hideId = "";

function hideShow(id)
{
	document.getElementById(id).style.display = "block";
	if(hideId)
	{
		document.getElementById(hideId).style.display = "none";
	}
	if(hideId != id)
	{
		hideId = id;
	} else {
		hideId = "";
	}
}
