function DisplayImage(setFolder,setImage,setClass){
		
	getWidth = 595 + 40;
	getHeight = 400 + 40;	
		
     	setLeft = (screen.width - getWidth) / 2;
     	setTop = (screen.height - getHeight) / 2;
     	
	setURL = "images.php?img=" + setFolder + "&name="+ setImage + "&class=" + setClass;
	setWindow = "top=" + setTop + ", left=" + setLeft + ", toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=" + getWidth + ",height=" + getHeight; 

	openWindow = window.open(setURL, "WinImageWalsabbion", setWindow);

	
}
function CheckWindow(getWidth,getHeight){

	if (window.name != "WinImageWalsabbion"){
		
		self.location.href = "index.php";
	
	}else{
		window.focus();
		window.resizeTo(getWidth,getHeight);
	}
}
