function mini_window(the_file, the_name, form_id, is_unique, the_width, the_height)
{
	var the_time;
	var the_name;
	var decorations;
	var my_home = "http://hieroglyphs.net/000501/";
	var h_window;

	the_width += 35;
	the_height += 20;

	if (is_unique)
	{	
		the_time = new Date();
		the_name = the_time.getTime();
		document.forms[form_id].target = the_name;
	}
	if (the_file.substring(0,7) != "http://"  &&  the_file.substring(0,8) != "https://") { the_file = my_home + the_file; }
	decorations="toolbar=0,location=0,directories=0,status=1,menubar=1,resizable=1,scrollbars=1,width=" + the_width + ",height=" + the_height;
	
	//alert(the_file + " -|- " + the_name + " -|- " + decorations);
	
	h_window = open(the_file,the_name,decorations);
	//h_window.focus();
}
