var newwindow;
function makewin(url,width,height,winopts)
{
	allopts = "width=" + width + ",height=" + height + ",scrollbars=yes,resizable=yes," + winopts;
	newwindow=window.open(url,'image',allopts);
	if (window.focus) {newwindow.focus()}
}