function resizeme(){
/* disabled it
    var browserHeight = document.body.clientHeight;
    browserHeight = browserHeight - 130 - 35 + (document.all?0:-20); 
    var contentblock = document.getElementById("contentblock");
    if(contentblock.offsetHeight<browserHeight)
        contentblock.style.height = browserHeight + "px";
		*/
}
		
function buttonHomeOver(id, color){
	if (color)
		color = "_"+color;
	else
		color = "";
	var element = document.getElementById(id);
	element.style.backgroundImage = "url('/designimages/buttonbackhover"+color+".png')";
}
function buttonHomeOut(id, color){
	if (color)
		color = "_"+color;
	else
		color = "";
	var element = document.getElementById(id);
	element.style.backgroundImage = "url('/designimages/buttonback"+color+".png')";
}

