/* FLASH RE WRITE
----------------------------------------------------------------------------------------------------------------------------*/
function IE_HtmlRewrite(objParent) {
	if (window.ActiveXObject && objParent) {
		objParent.innerHTML = objParent.innerHTML;
	}
}

/* movie write */
function movieWrite(mUrl, mId, mWidth, mHeight) {
 
 var movieContent;
	movieContent = '<object id="' + mId + '" width="'+ mWidth +'" height="'+ mHeight +'" classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95">';
	movieContent += '<param name="filename" value="' + mUrl + '">';
	movieContent += '<param name="autostart" value="1" />';
	movieContent += '<param name="audiostream" value="1">';
	movieContent += '<param name="showcontrols" value="0" />';
	movieContent += '</object>';
	document.write(movieContent);
}

/* image rollover */
function menuOn(imgEl) {
	imgEl.src = imgEl.src.replace(".gif", "on.gif");
}

function menuOut(imgEl) {
	imgEl.src = imgEl.src.replace("on.gif", ".gif");
}

/* photoView */
function photoView(num) {
	var objNum = num - 1;
	var objPhoto = document.getElementById("photo-contents").getElementsByTagName("li");
	for(i = 0; i < objPhoto.length; i++) {
		objPhoto.item(i).style.display = "none";
	}
	objPhoto.item(objNum).style.display = "block";
}