/*	Anzeige grosses Artikelbild (600x450)   function Anzeige(	*/

function xxxxxx(seite,format) {
	var win1;
	winStats='toolbar=no,location=no,directories=no,menubar=no,resizable=no,fullscreen=no,scrollbars=no'
	if (format=='q') {
		gross='width="600" height="450"'
		winStats+=',width=600,height=450'
	}else{
		gross='width="450" height="600"'
		winStats+=',width=450,height=600'
	}
	winStats+=',marginwidth="0", marginheight="0", leftmargin="0" ,rightmargin="0", topmargin="0"'
	if (navigator.appName.indexOf("Microsoft")>=0) {
		winStats+=',left=10,top=10'
	}else{
		winStats+=',screenX=10,screenY=10'
	}
	win1=window.open("","Merchandising",winStats);
	win1.close();
	win1=window.open("","Merchandising",winStats);
	win1.document.write('<html><head><title>Artikel - '+seite+'</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head><body bgcolor="#FFFFFF" text="#000000" marginwidth="0" marginheight="0" leftmargin="0" rightmargin="0" topmargin="0"><img src="../Fotos/Shop/Gross/'+seite+'.jpg" '+gross+' border="0"></body></html>');
	win1.focus();
}


/* ****************************************************************************************************	*/
/*													*/
/*	Anzeige Popup (dynamische Breite und Höhe)							*/
/*													*/
/*	1) Im folgenden Code ist 2-mal window.open und zusätzlich clis() codiert			*/
/*	   um den wiederholten Aufruf des Popup-Windows zu ermöglichen.					*/
/*	   Ohne diese beiden Zeilen würde sich das Bild nicht ändern!!					*/
/*	2) Die folgenden Eigenschaften sind aus Anzeige() nicht nach Popup() übernommen: 		*/
/*	 a) directories=no   und   fullscreen=no							*/
/*	 b) <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">			*/
/*													*/
/* ****************************************************************************************************	*/

function Popup(name,bild,breite,hoehe) {
	var win1;
	win1=window.open("","name","width="+breite+",height="+hoehe+",left=20,top=20,location=no,menubar=no,resizable=no,scrollbars=no,toolbar=no");
	win1.close();
	win1=window.open("","name","width="+breite+",height="+hoehe+",left=20,top=20,location=no,menubar=no,resizable=no,scrollbars=no,toolbar=no");
	win1.document.write('<html><body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" ><img src='+bild+' alt='+name+' width='+breite+' height='+hoehe+' border="0"></body></html>');
	win1.document.title = name;
	win1.focus();
	}


/*	Hello World!							*/

function Hello() {
	alert("Hello World! aus JS-Datei");
}
