with(Item=function(){
	this.Image=document.getElementById('item_image');
	this.Error=(this.Image)?0:0x01;
}){
	prototype.Image;
	prototype.ImageError=0;
	
	prototype.Set=function(URL,FullURL){
		if(this.Error)
			return;
		this.Image.src=URL;
		this.Image.parentNode.getElementsByTagName('a')[0].href=FullURL;
	}
	
	prototype.SetImage=function(URL,FullURL){
		this.Set(URL,FullURL);
		return true;
	}
}
