function changeBoth(gameimageurl){
	if(document.getElementById){
		var thegameimage = document.getElementById('GameImage');
		var thegamelink = document.getElementById('GameImgLink');
	} else if (document.all){
		var thegameimage = document.GameImage
		var thegamelink = document.GameImgLink
	}
	thegameimage.src = "Images\/Games\/Display\/"+gameimageurl;
	thegamelink.href ="Images\/Games\/"+gameimageurl;
	return
}	

function showSpecs (button) {
	if(document.getElementById){
		var showntell = document.getElementById("specs")
	} else if (document.all){
		var showntell = document.specs
	}
	showntell.style.display = "block"
	setTimeout(clearSpecs, 25000)
	return
}

function clearSpecs () {
	if(document.getElementById){
		var showntell = document.getElementById("specs")
	} else if (document.all){
		var showntell = document.specs
	}
	showntell.style.display = "none"
	return
}