	
	function openWindow () {
		// open new global window for order
		neues_Fenster = window.open("webcam/webcam.phtml","neues_Fenster","width=660,height=590,left=0,top=0,resizable=no");
		neues_Fenster.focus();
		// function in order.html to type in the value of the global variable into intputfields
		window.setTimeout ("neues_Fenster.inputFields()", 1);
	}
	
	function openConditions (path) {
		conditions = window.open(path,"conditions","width=480,height=500,left=0,top=0,resizable=no");
		conditions.focus();
	}

