function zoom(image,x,width,height,alt)
{
var thum=window.open('', x,'width='+width+',height='+height+',toolbar=no,scrollbars=no,menubar=no,status=no,resizable=no')
thum.document.write("<html><head><title>"+alt+"</title></head>")
thum.document.write("<body bgcolor='#000000' text='#ffffff' marginwidth=0 marginheight=0 topmargin=0 leftmargin=0>")
thum.document.write("<img src='"+image+"' alt='"+alt+"' width='"+width+"' height='"+height+"'>")
thum.document.write("</body></html>")
thum.document.close()
}

function RollClass(obId, CssClass)
{
	if(document.getElementById(obId)) document.getElementById(obId).className = CssClass;
}
