<!--
function ChangeSide(image1,title, width, height) {	
	openimage = '<a href="javascript:window.close()"><img src="' + image1 + '" name="temp" border="0"></a>'
	titling = "<Title>" + title + "</Title>"
	metaing = "<meta http-equiv=" + '"'+ "Content-Type"+'"' +"content=" + '"'+ "text/html; charset=big5"+'"' + '>'
	tempimage = new Image()
	tempimage.src = image1
	left2 = eval(eval(screen.width / 2) - eval(eval(width)/ 2))
	top2 = eval(eval(screen.height / 2) - eval(eval(height) / 2))
	setting = "left=" + left2 + ",top=" + top2  + ",width=" + width+ ",height=" + height
	
	ShowPic = window.open("","",setting)	
	ShowPic.document.open("text/html")
	ShowPic.document.write("<HTML><Head>" + titling + metaing+"</Head><Body>")
	ShowPic.document.write(openimage)
	ShowPic.document.write("</Body></HTML>")
	ShowPic.document.close()
	

}
-->
