﻿// dynamic pic view by futureweb.at

function picwindow(picname,picheight,picwidth) {

newWindow = window.open("", "DynamicPicPage", "height=" + picheight + ",width=" + picwidth + ",left=75,top=75");
newWindow.document.write('<html><head></head><body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0 onBlur="window.close();"><table border=0 cellpadding="0" cellspacing="0"><tr><td align=center valign=middle><img src="' + picname + '"></td</tr></table></body></html>');
newWindow.document.close();
}