// JavaScript Document
function open_picture(url, wn, width, height)
{
	newWindow = window.open(url, wn, "width="+width+",height="+height+",scrollbars=no,menubar=no,resizable=no");
}