// JavaScript Document
function Interface(){
	this.showPage=function(id,url){
		$("#"+id).load(url)
	}
	this.showImg=function(id,url){
		$("#"+id).html("<img src="+url+">");
		$("#"+id).show();
	}
	this.hidenImg=function(id){
		$("#"+id).hide();
	}
}
