﻿// JScript File

	function showDiv(iden) {
	
		var content = iden;

	var leftpos = posx+1;
	var toppos = posy;			
	document.getElementById("img_disp_photo").style.display='';	
	document.getElementById("img_disp_photo").innerHTML="<div style='border:0px solid red;width:140px;height:90px;position:absolute;top:"+toppos+"px;left:"+leftpos+"px;background-image:url(images/cont.gif); padding-left:4px;font-family:Verdana;font-size:9px;vertical-align:middle;' align='center'><table cellpadding='0' cellspacing='0' border='0' style='background-color:#C6B6A5;margin-left:7px;height:90px;'><tr><td style='padding-right:10px;padding-left:10px;padding-top:15px;padding-bottom:10px;'>"+content+"</td></tr></table></div>";

}
function hideDiv()
{
		document.getElementById("img_disp_photo").style.display='none';
}
function empty()
{

}

