function setImg(theURL,slink,target,px,autosize){ 
	imgObj = new Image();
	imgObj.src = theURL;
	if(!imgObj.width){
		document.write("<a href='"+ slink +"' target='"+ target +"'><img src='"+ theURL +"'  "+ autosize +"='"+ px +"'  border=0 ></a>");
	}else{
	if(imgObj.width>=imgObj.height){
		if(imgObj.width>=px){
			document.write("<a href='"+ slink +"' target='"+ target +"'><img src='"+ theURL +"' width='"+ px +"' border=0 ></a>");
		}else{
			document.write("<a href='"+ slink +"' target='"+ target +"'><img src='"+ theURL +"'  border=0 ></a>");
		}
	}else{
		if(imgObj.height>=px){
			document.write("<a href='"+ slink +"' target='"+ target +"'><img src='"+ theURL +"' height='"+ px +"'  border=0 ></a>");
		}else{
			document.write("<a href='"+ slink +"' target='"+ target +"'><img src='"+ theURL +"'  border=0 ></a>");
		}
	}
	}
	
}

function setImg_d(theURL,px,autosize){ 

	imgObj = new Image();
	imgObj.src = theURL;
	if(!imgObj.width){
		document.write("<a href='"+ theURL +"' ><img src='"+ theURL +"'  "+ autosize +"='"+ px +"'  border=0 ></a>");
	}else{
	if(imgObj.width>=imgObj.height){
		if(imgObj.width>=px){
			document.write("<a href='"+ theURL +"' target='_blank'><img src='"+ theURL +"' width='"+ px +"' border=0 ></a>");
		}else{
			document.write("<a href='"+ theURL +"' target='_blank'><img src='"+ theURL +"'  border=0 ></a>");
		}
	}else{
		if(imgObj.height>=px){
			document.write("<a href='"+ theURL +"' target='_blank'><img src='"+ theURL +"' height='"+ px +"'  border=0 ></a>");
		}else{
			document.write("<a href='"+ theURL +"' target='_blank'><img src='"+ theURL +"'  border=0 ></a>");
		}
	}
	}
	
}
