﻿//cHTML='<div id="jsDiv" style="position: absolute; border: 2px double #3c99d4;\
//      display: none;zoom:1 background-color: #ffffff; z-index:20; width:100px; height:100px; overflow:hidden;"><br/>\
//	 <img id="pimg" src="" alt="" /><br>\
//	</div>'
//document.write(cHTML)
function jshowimg(fileName)
{

  var divname=document.getElementById("pimg");
 
  divname.src=fileName;
//   $('div#content-mid').fadeTo('slow',0.1);
  $('div#jsDiv').show('slow');
  $('div#jsDiv').fadeTo('slow',1);
}
function hdimg()
{
   $('div#jsDiv').hide('slow');
 $('div#content-mid').fadeTo('slow',1);

}
