/**
	*
	* This is the short Description for the Function
	* Pops up the link/picture in a new window with: no menubar, no toolbar, no location, no directories, no status, not resizable
	*/
	function popup_window(url) {
		var popup = window.open(url, 'console', 'menubar=no,toolbar=no,location=no,directories=no,status=no,scrollabrs=no,rezisable=no, width=1044, height=800');
	}
