	function windowOpenMinimized( title, url, x, y, width, height, location, menubar, toolbar, scrollbars, status, resizable, fullscreen) {
		tmpWindow = window.open( url, title, "left=" + x + ",top=" + y + ",width=" + width + ",height=" + height + ",location=" + location + ",menubar=" + 
menubar + ",toolbar=" + toolbar + ",scrollbars=" + scrollbars + ",status=" + status + ",resizable=" + resizable + ",fullscreen=" + fullscreen);
		setTimeout("tmpWindow.blur()", 3000);
	}

