	
function imagemap(num)
{
 	if(num) {
	 	document.images['produkt'].src="/image/produkte/" + produkt + "_" + num + ".jpg";
		document.images['map'].src="/image/produkte/" + produkt + "_map_" + num + ".jpg";
	}
 	if(!num) {
	 	document.images['produkt'].src="/image/produkte/" + produkt + ".gif";
		document.images['map'].src="/image/produkte/" + produkt + "_map.jpg";
	}
}
	
	
function OpenImageWindow(src,scrollbars,width,height) {
	var scrollbars = scrollbars ? 1 : 0;
	var width = width ? width : 666;
	var height = height ? height : 567;
	var status = 1;
	var properties = 'width=' + width + ',height=' +  height + ',scrollbars=' + scrollbars + ',status=' + status;
	var imgWin = window.open(src,'_blank',properties);
	return false;
}	