function hand(id) {
	document.getElementById(id).style.cursor = "hand";
}

function hilite(id) {
	document.getElementById(id).style.backgroundColor = "red";
	document.getElementById(id).style.cursor = "hand";
}

function clearimage(id) {
	document.getElementById(id).style.backgroundColor = "#FF9300";
}


function popup(url) {
	var img = new Image();
	img.src = "http://www.decorsulangola.com/"+url;
	var windowhandle = window.open("screenshot.php?link=" + img.src,'openscript','width=' + img.width + ',height=' + img.height + ',resizable=no,scrollbars=no,menubar=no,status=no' );
	windowhandle.focus();
	windowhandle.resizeTo(img.width + 10, img.height + 28);
}