﻿<!--
function popOpen(img, name, width, height) {
	newwindow2=window.open(img, name,'width='+width+', height='+ height);
	var tmp = newwindow2.document;
	tmp.write("<html><head><title>Rosen Centre | " + name + "</title>");
	tmp.write("<style type=\"text/css\">* {margin:0;padding:0}</style></head><body><a href=\"#\" onclick=\"window.close()\"><img src=\"" + img + "\" width=\""+ width + "\" height=\"" + height + "\" border=\"0\" alt=\"\"" + "/></a>");
	tmp.write("</body></html>");
	tmp.close();
}
-->