<!-- HIDE

function getImage(width,height,image,name){
	
	var html = "<html><head><title>" + name + "</title>";
	html += "<body bgcolor=#ffffff><div align='center'>";
	html += "<h3 style='font-family: verdana, helvetica; color: #333399'>" + name + "</h3>";
	html += "<table border='0' cellpadding='10' cellspacing='0'><tr><td bgcolor='#333399'>";
	html += "<a href='javascript:window.close()'><img src='images/pages/" + image + "' width=" + width + " height=" + height + " ></a>";
	html += "</td></tr></table>";
	html += "<a href='javascript:window.close()'><img src='images/close.gif' alt='Close Window' width='120' height='30' border='0'></a></div>";
	
	width=(width*1);
	height=(height*1);
	
	var myWin = window.open("","","width=" + (width + 50) + ",height=" + (height + 135) + ",toolbars=no,location=no,scrollbar=no,resizable=no");
	myWin.document.write(html);
	myWin.document.close();
	
	}



// -->