// Screenshots aufrufenfunction openwindow(name, vx, vy) {	var widthOfWindow = vx; var heightOfWindow = vy; var path = "portfolio/"; var URL=path+name;	var Window = window.open("","openwindow","width=" + widthOfWindow + ",height=" + heightOfWindow + ",status=" + heightOfWindow + 	",resizable=no,directories=0,menubar=0,status=0,scrollbars=no,location=no,toolbar=no");	var sX = (screen.width - widthOfWindow) / 2;	var sY = (screen.height - heightOfWindow) / 2;	Window.moveTo(sX,sY);	Window.document.location.href = URL;}	// Seiten aufrufenfunction openpage(name, vx, vy) {	var widthOfWindow = vx; var heightOfWindow = vy; var URL=name;	var Window = window.open("","openwindow","width=" + widthOfWindow + ",height=" + heightOfWindow + ",status=" + heightOfWindow + 	",resizable=no,directories=0,menubar=0,status=0,scrollbars=no,location=no,toolbar=no");	var sX = (screen.width - widthOfWindow) / 2;	var sY = (screen.height - heightOfWindow) / 2;	Window.moveTo(sX,sY);	Window.document.location.href = URL;}// Seiten aufrufen (scrollbar)function openpageres(name, vx, vy) {	var widthOfWindow = vx; var heightOfWindow = vy;; var URL=name;	var Window = window.open("","openwindow","width=" + widthOfWindow + ",height=" + heightOfWindow + ",status=" + heightOfWindow + 	",resizable=no,directories=0,menubar=0,status=0,scrollbars=yes,location=no,toolbar=no");	var sX = (screen.width - widthOfWindow) / 2;	var sY = (screen.height - heightOfWindow) / 2;	Window.moveTo(sX,sY);	Window.document.location.href = URL;}// Sitemap aufrufenfunction sitemap(name, vx, vy) {	var widthOfWindow = 187; var heightOfWindow = 600; var URL = 'sitemap.html';	var Window = window.open("","openwindow","width=" + widthOfWindow + ",height=" + heightOfWindow + ",status=" + heightOfWindow + 	",resizable=no,directories=0,menubar=0,status=0,scrollbars=yes,location=no,toolbar=no");	var sX = (screen.width - widthOfWindow)-15;	var sY = (0);	Window.moveTo(sX,sY);	Window.document.location.href = URL;}	// Games aufrufenfunction opengame(name, vx, vy) {	var widthOfWindow = vx; var heightOfWindow = vy; var path = "spass/"; var URL=path+name;	var Window = window.open("","openwindow","width=" + widthOfWindow + ",height=" + heightOfWindow + ",status=" + heightOfWindow + 	",resizable=no,directories=0,menubar=0,status=0,scrollbars=no,location=no,toolbar=no");	var sX = (screen.width - widthOfWindow) / 2;	var sY = (screen.height - heightOfWindow) / 2;	Window.moveTo(sX,sY);	Window.document.location.href = URL;}//E-Card lesenfunction opencard() {	var widthOfWindow = 420; var heightOfWindow = 500; var URL = "http://www.labor1.de/l1_media/beispiele/ecards/viewer.html";	var Window = window.open("","openwindow","width=" + widthOfWindow + ",height=" + heightOfWindow + ",status=" + heightOfWindow + 	",resizable=no,directories=0,menubar=0,status=0,scrollbars=no,location=no,toolbar=no");	var sX = (screen.width - widthOfWindow) / 2;	var sY = (screen.height - heightOfWindow) / 2;	Window.moveTo(sX,sY);	Window.document.location.href = URL+document.location.search;}//E-Card lesenfunction opened() {	var widthOfWindow = 750; var heightOfWindow = 500; var URL = "http://www.labor1.de/l1_media/beispiele/ecards/editor.html";	var Window = window.open("","openwindow","width=" + widthOfWindow + ",height=" + heightOfWindow + ",status=" + heightOfWindow + 	",resizable=no,directories=0,menubar=0,status=0,scrollbars=no,location=no,toolbar=no");	var sX = (screen.width - widthOfWindow) / 2;	var sY = (screen.height - heightOfWindow) / 2;	Window.moveTo(sX,sY);	Window.document.location.href = URL+document.location.search;}//ecard-fenster auf editorgroesse aendernfunction winres() {	var widthOfWindow = 750; var heightOfWindow = 500; 	var sX = (screen.width - widthOfWindow) / 2;	var sY = (screen.height - heightOfWindow) / 2;	Window.moveTo(sX,sY);	Window.resizeTo(widthOfWindow, heightOfWindow)}
