﻿function create_window(image)
{
	width =  600;
	height = 600;
	
	if(window.popup && !window.popup.closed)
	{
		window.popup.resizeTo(width, height);
	}
	
	var specs = "location=no, scrollbars=no, menubars=no, toolbars=no, resizable=yes, left=0, top=0, width=" 
	+ width + ", height=" + height; 
	
	var url = '/' + image;
	
	popup = window.open(url,"ImageWindow", specs);
	popup.document.bgcolor='#000000';	
	popup.focus();
}
