﻿
function open_w(url, fenster, bildtitel, pfad, bgcolor, height, width, parameters) {
	//Standardwerte
	fenster = (fenster == null || fenster == '') ? 'new' : fenster;
	pfad = (pfad == null || pfad == '') ? '/uploads/pics/' : pfad;
	bgcolor = (bgcolor == null || bgcolor == '') ? '#ffffff' : bgcolor;
	height = (height == null || height == '') ? '1300' : height;
	width = (width == null  || width == '') ? '1200' : width;
	parameters = (parameters == null || parameters == '') ? 'menubar=0, resizable=0, status=0, titlebar=1, toolbar=0, scroll=1, scrollbars=1, resizable=0,' : parameters;
	
	
	
	
	//Fenster �ffnen
	var fens = window.open(url, fenster, 'height=' + height + ',width=' + width + ',' + parameters);
	if (url == null || url == "") {
	  fens.document.open();
	  fens.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><title>Knesebeck Verlag</title><head>');
  	fens.document.write('<body onload="javascript:window.focus()" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" style="background-color:' + bgcolor + '">');
		
		if (bildtitel != null && bildtitel != '') {
			fens.document.write('<a href="#" onclick="javascript:window.close()">');
			
			fens.document.write('<img src="' + pfad + bildtitel + '" alt="' + bildtitel + '" border="0" />');
			
			fens.document.write('</a>');
		}
		
		
		fens.document.write('</body>');
		fens.document.close();
	}
}
function fullWK() {
  var warenkorb = document.getElementById("korb");
  warenkorb.src = "fileadmin/templates/layoutimages/korbgrossvoll_text.jpg";
}



