// JavaScript Document
function HKD_showPict(pictGroup,pictName,picText,dimText,dimValue,windowWidth,windowHeight,pictSizeBig)
{
	var pictLoc = '../fotos/'+pictGroup+'/big/'+pictName;
	var features = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width='+windowWidth+',height='+windowHeight+',left=0,top=0';
	targetWindow = open("","",features);
	targetWindow.document.write('<head>');
	targetWindow.document.write('<title>'+picText+'</title>');
	targetWindow.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	targetWindow.document.write('<link href="HKD.css" rel="stylesheet" type="text/css">');
	targetWindow.document.write('</head>');
	targetWindow.document.write('<body bgcolor="#cccccc">');
	if (pictSizeBig == '1')
		targetWindow.document.write('<table border="1"><tr><th><a style="cursor:pointer" onclick="self.close()"><img src='+pictLoc+' alt="Fenster schließen" height="400"></th></tr>');
	else
		targetWindow.document.write('<table border="1"><tr><th><a style="cursor:pointer" onclick="self.close()"><img src='+pictLoc+' alt="Fenster schließen" height="200"></th></tr>');
	targetWindow.document.write('<tr><td height="82" class="HKDShow"> <table  width="250" border="1" cellpadding="3">');
	targetWindow.document.write('<tr><td width="126">Name</td><td width="150" nowrap>'+picText+'</td></tr>');
		
	targetWindow.document.write('<tr><td nowrap>Maße ('+dimText+') [mm]</td><td>ca. '+dimValue+'</td></tr>');	
	targetWindow.document.write('</table></td></tr></table>');	
	targetWindow.document.write('</body>');
	targetWindow.document.close();
}

function HKD_showPictDet(pictGroup,pictName,picText,windowWidth,windowHeight,pictSizeBig)
{
	var pictLoc = '../fotos/'+pictGroup+'/big/'+pictName;
	var features = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width='+windowWidth+',height='+windowHeight+',left=0,top=0';
	targetWindow = open("","",features);
	targetWindow.document.write('<head>');
	targetWindow.document.write('<title>'+picText+'</title>');
	targetWindow.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	targetWindow.document.write('</head>');
	targetWindow.document.write('<body bgcolor="#cccccc">');
	if (pictSizeBig == '1')
		targetWindow.document.write('<table border="1"><tr><th><a style="cursor:pointer" onclick="self.close()"><img src='+pictLoc+' alt="Fenster schließen" height="400"></th></tr>');
	else
		targetWindow.document.write('<table border="1"><tr><th><a style="cursor:pointer" onclick="self.close()"><img src='+pictLoc+' alt="Fenster schließen" height="200"></th></tr>');
	//targetWindow.document.write('<tr><td height="82"> <table  width="250" border="1" cellpadding="3">');
	//targetWindow.document.write('<tr><td width="126">Name</td><td width="150" nowrap>'+picText+'</td></tr>');
	//targetWindow.document.write('<tr><td nowrap>Maße ('+dimText+') [mm]</td><td>ca. '+dimValue+'</td></tr>');	
	//targetWindow.document.write('</table></td></tr></table>');	
	targetWindow.document.write('</table>')
	targetWindow.document.write('</body>');
	targetWindow.document.close();
}