

			function checkAll(switcher) {
				var cb = document.getElementsByTagName("input");
			  for (var i=0; i<cb.length; i++)
			  	if (cb[i].type.indexOf(cb) != 1) cb[i].checked = switcher;
			}
			
			function printWindow() {
			Browser = parseInt(navigator.appVersion);
			if (Browser >= 4) window.print();
			}
			


	
	function RePix(Pix) {
	var Pc = 200; /* <--- Edit the %Percent% (i.e. 50%) of Pic, Relative to Screen <--- */
	if (Pix.width > Pc) {
	RePixH(Pix,Pc);
	RePixW(Pix,Pc);
	}
	}
	function RePixW(Pix,Pc) {
	Pix.width = Pc;
	}
	function RePixH(Pix,Pc) {
	var faktor;
	faktor = (Pix.width/Pc);
	Pix.height = (Pix.height/faktor);
	} 
	
	function RePix_signatur(Pix) {
	var Pc = 400; /* <--- Edit the %Percent% (i.e. 50%) of Pic, Relative to Screen <--- */
	if (Pix.width > Pc) {
	RePixH(Pix,Pc);
	RePixW(Pix,Pc);
	}
	}
	function RePixW(Pix,Pc) {
	Pix.width = Pc;
	}
	function RePixH(Pix,Pc) {
	var faktor;
	faktor = (Pix.width/Pc);
	Pix.height = (Pix.height/faktor);
	} 
