
function changeClass(id, cl) {
	document.getElementById(id).className = cl;
}

function ShowMe(picURL, w, h){
	newWindow=window.open('picURL','newWin','toolbar=no,top=100,left=50,width='+w+',height='+h)
	newWindow.document.write('<html><head><\/head><body topmargin="0" leftmargin="0"><img src="'+picURL+'"><\/body><\/html>')
	newWindow.focus();
}