//<![CDATA[
function einblenden(a){
	var decript=document.getElementById(a);
	if (!decript)return true;
	decript.style.visibility="visible";
}

function ausblenden(a){
	var decript=document.getElementById(a);
	if (!decript)return true;
	decript.style.visibility="hidden";
}

function openProductPic(picURL) {
	var picWin = window.open('', 'navWin', 'toolbar=no, status=no, scrollbars=no, resizable=no, width=660, height=660');
	if (picWin != null){
		with (picWin.document){
			open();
			write("<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\" />\n</head>\n");
			write("<body>");
			write("\n<div style=\"position: absolute; width:620px; height:620px; left: 50%; top: 50%; margin-top: -310px; margin-left:-310px; text-align:center; vertical-align:middle\">\n");
			write("<img src=\""+picURL+"\" />");
			write("\n</div>\n</body>\n</html>");
			close();
		}
	}	
}
//]]>