<!-- 
//var imgObj;
//function checkImg(theURL){
	//var divshow=document.getElementById("divShowImageBox");
	//if (typeof(imgObj) == "object"){
		//if ((imgObj.width != 0) && (imgObj.height != 0)){
			//divshow.style.width = imgObj.width;
			//divshow.style.height = imgObj.height;
			//divshow.style.pixelWidth = 402;
			//divshow.style.pixelHeight = 302;
		//}else{
			//setTimeout("checkImg('" + theURL + "')", 100);
		//}
	//}
//}
/*firefox*/ 
function __firefox(){ 
HTMLElement.prototype.__defineGetter__("runtimeStyle", __element_style); 
window.constructor.prototype.__defineGetter__("event", __window_event); 
Event.prototype.__defineGetter__("srcElement", __event_srcElement); 
} 
function __element_style(){ 
return this.style; 
} 
function __window_event(){ 
return __window_event_constructor(); 
} 
function __event_srcElement(){ 
return this.target; 
} 
function __window_event_constructor(){ 
if(document.all){ 
return window.event; 
} 
var _caller = __window_event_constructor.caller; 
while(_caller!=null){ 
var _argument = _caller.arguments[0]; 
if(_argument){ 
var _temp = _argument.constructor; 
if(_temp.toString().indexOf("Event")!=-1){ 
return _argument; 
} 
} 
_caller = _caller.caller; 
} 
return null; 
} 
if(window.addEventListener){ 
__firefox(); 
} 
/*end firefox*/ 

function ShowBigPic(obj,imgsrc){
	HideBigPic();
	var divShow=document.getElementById("divShowImageBox");
	var ifrm=document.getElementById("ifrmImage");
	divShow.style.pixelWidth = 402;
    divShow.style.pixelHeight = 302;
	//imgObj = new Image();
	//imgObj.src = imgsrc;
	//checkImg(imgsrc);
	//ifrmImage.imgShowImage.src = obj.src;
	//alert(imgsrc);
	//divShow.style.display='hidden';
	window.frames[0].document.getElementById("imgShowImage").src=imgsrc;

	//if (event.clientX >(document.body.clientWidth/2)){
     var ie = (navigator.appVersion.indexOf("MSIE")!=-1);//IE 
     var ff = (navigator.appName.indexOf("Netscape")!=-1);//Firefox 
	 if(ie){
		if(event.clientY>302)
	    divShow.style.pixelTop = document.documentElement.scrollTop+20;
		else
		divShow.style.pixelTop = document.documentElement.scrollTop+270;
		if(event.clientX>501)
		divShow.style.pixelLeft = document.body.clientWidth-divShow.style.pixelWidth-560;
		else
		divShow.style.pixelLeft = document.body.clientWidth-divShow.style.pixelWidth-40;
	 }
	 if(ff){
		if(event.clientY>302)
		divShow.style.top = document.documentElement.scrollTop+20+"px";
		else
		divShow.style.top = document.documentElement.scrollTop+270+"px";
		if(event.clientX>501)
		divShow.style.left= document.body.clientWidth-divShow.style.pixelWidth-560+"px";
		else
		divShow.style.left= document.body.clientWidth-divShow.style.pixelWidth-40+"px";
		divShow.style.height = "302px";
		divShow.style.width = "402px";
		 }
	//}else{
		//divShowImageBox.style.pixelLeft = document.body.clientWidth-divShowImageBox.style.pixelWidth-40;
	//}
	divShow.style.display='';
	//ifrm.reload();
}
function HideBigPic(){
	var divShow=document.getElementById("divShowImageBox");
	//var ifrm=document.getElementById("ifrmImage");
	window.frames[0].document.getElementById("imgShowImage").src='';
	divShow.style.display='none';
}
//-->
