function changeImages() {
	if (document.images) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
	return true;
};

function showBig(largeImgUrl,test1,test2) {

        var mywin=window.open('','Grossansicht','scrollbars=no,resizable=yes,width='+test1+',height='+test2+',location=no,menubar=no,status=yes,toolbar=no,top=100,left=100');
        mywin.document.open();
        mywin.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><title>STAKU Anlagenbau GmbH Detailansicht</title>');
        mywin.document.write('</head><body style="background:#ffffff; margin:0px; padding:0px;"');
        mywin.document.write('<table width="100%" style="height:100%;" border="0" cellspacing="0" cellpadding="0"><tr><td valign="top">');
        mywin.document.write('<img src="'+largeImgUrl+'" border="0" />');
        mywin.document.write('</td></tr><tr><td align="right" valign="top">');
        mywin.document.write('<a href="javascript:window.close();"><span style="font-family: Arial; font-size: 11px; font-weight: normal; color: #3089BC; text-decoration: none;">Fenster schließen / Close Window</span></a>');
        mywin.document.write('</td></tr><tr><td>&nbsp;</td></tr></table>');
        mywin.document.write('</body></html>');
        mywin.document.close();
        mywin.focus();
        }

