var showImage = function(sImage){
	document.getElementById('theImage').innerHTML = '<img src="../images/cases/image/'+sImage+'" alt="" class="fullPicture"/>';
}

var showContent = function(sContent,sImage){
	document.getElementById('theContent').innerHTML = '<p>'+sContent+'</p>';
	document.getElementById('theImage').innerHTML = '<img src="../images/cases/image/'+sImage+'" alt="" class="fullPicture"/>';
}

var hideContent = function(){
	document.getElementById('theContent').innerHTML = '<p> </p>';
	document.getElementById('theImage').innerHTML = '<img src="../images/layout/blank.gif" alt="" class="fullPicture"/>';
}

var showaward = function(linkske){
	window.open(linkske, 'Award', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=740,height=670,left = 452.5,top = 244.5');
}

