<!--
function windowopen(filename,target,get_size){
filename2 = filename.replace(/shared\/image.html\?/i,"");
var html = new Array();

html[0] = "<html><head>\n";
html[1] = "<style type=\"text/css\"><!--\n";
html[2] = "body{margin:0}\n";
html[3] = "--></style></head>\n";
html[4] = "<body marginwidth=\"0\" marginheight=\"0\">\n"
html[5] = "<div><img src=\"";
html[6] = filename2;
html[7] = "\"></div></body></html>\n"

newWindow = window.open('','',get_size);
newWindow.document.open();
newWindow.document.write(html.join(""));
newWindow.document.close();

return false;
}
//-->
