<!--
function showimg(ImgD){
	
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0){
flag=true;
if(image.width/image.height>=1){
if(image.width>120){ 
ImgD.width=120;
}else{
ImgD.width=image.width; 
ImgD.height=image.height;
}
}
else{
if(image.height>120){ 
ImgD.height=120;
}else{
ImgD.width=image.width; 
ImgD.height=image.height;
}
}
}
ImgD.style.display="";
}

function sshowimg(ImgD){
	
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0){
flag=true;
if(image.width/image.height>=1){
if(image.width>100){ 
ImgD.width=100;
}else{
ImgD.width=image.width; 
ImgD.height=image.height;
}
}
else{
if(image.height>100){ 
ImgD.height=100;
}else{
ImgD.width=image.width; 
ImgD.height=image.height;
}
}
}
ImgD.style.display="";
}
//-----------------------------------------------------------------------------------

function bigimg(ImgD){
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0){
flag=true;
if(image.width/image.height>=1){
if(image.width>320){ 
ImgD.width=320;
}else{
ImgD.width=image.width; 
ImgD.height=image.height;
}
}
else{
if(image.height>320){ 
ImgD.height=320;
}else{
ImgD.width=image.width; 
ImgD.height=image.height;
}
}
}
ImgD.style.display="";

}
//-----------------------------------------------------------------------

function showmypic (pic,xid) { 	
	if (document.getElementById) { 		
	document.getElementById('BigPic').src = pic.href;
	document.getElementById('BigPicHref').href = 'product_view.asp?id=' + xid;
	return false; 	
	} 
	  else { return true; } 
}




//-->