<!--
function pictureWindow(file_path,title,width,height) {
	var newWindow = window.open("", "newWin", "toolbar=no,status=no,location=no,scrollbars=no,directories=no,menubar=no,resizable=no,width=" + (width + 30) + ",height=" + (height + 60));
	newWindow.document.write("<html>\n<head>\n<title>" + title + "<\/title>\n<style type=\"text/css\">@import url(\"/skins/SCW/styleSheets/pictureWindow.css\");<\/style>\n<\/head>\n<body onBlur=window.close();>\n<div align=\"center\"><img src=\"" + file_path + "\" alt=\"Photo\" \/><br \/>\n");
	newWindow.document.write("<p><a href=\"javascript:close();\">close window<\/a><\/p>\n<\/div>\n<\/body>\n<\/html>");
	newWindow.document.close();
}
// -->