var faux = null;
var pic = new Image(); 

function openDetail(pic,hoehe) 
{
faux = window.open('','newWin','resizable,top=5,left=5,scrollbars=yes,width=550,height='+hoehe);
var fd = faux.document;
path="../pictures/" + pic.slice(0,1)+"/"+ pic + ".jpg";
fd.open();
fd.write('<html><head><title>MK - Krings Maraite</title></head>');
fd.write('<body bgcolor="white" onLoad="window.focus()">');
fd.write('<div align="center"><table border="0" cellpadding="0" cellspacing="0">');
fd.write('<tr><td><img src="../pictures/logo-m.gif" alt="" height="69" width="180" border="0"></td>');
fd.write('<td><div align="right"><font size="1" color="#0000cd" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">St. Vith / H&uuml;nningen 48<br>B-4780 ST. VITH<br><b>Tel.: 00 32 (0)80 22 84 77<br>Fax.: 00 32 (0)80 22 67 29</b></font></div></td></tr>');
fd.write('<tr height="10"><td></td><td></td></tr>');
fd.write('<tr><td colspan="2"><div align="center"><img src="'+path+'" border="0" onclick="window.close()"></div></td></tr>');
fd.write('<tr><td><div align="center"><h3><font color="#0000cd" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">Ref: <b>'+pic+'</b></font></h3></div></td><td nowrap height="42"><div align="right"><a href="javascript:window.print()"><img src="../pictures/printer.gif" alt="" height="38" width="40" border="0"></a><a href="javascript:window.print()"> <font size="1" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">Print - Drucken</font></a></div></td></tr>');
fd.write('</table></div></body></html>');
fd.close();
}

function resize()
			{ 
				if (parseInt(navigator.appVersion.charAt(0))>=4)
				{	var isNN=(navigator.appName=="Netscape")?1:0;
					var isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;
					var isOPERA=(navigator.appName.indexOf("Opera")!=-1)?1:0;
					var isOTHER;
					if(isNN==0 && isIE==0 && isOPERA==0)
					{	isOTHER=1;
					} 
					
				}
				if (isIE || isOPERA || isOTHER)
				{	window.resizeTo(100,100);
					width=document.images[1].width+120;
					if(width < 400) {width=500};
					height=document.images[1].height+220;
					window.resizeTo(width,height);
					
				}
				if (isNN)
				{	
				      width=document.images[1].width+120;
					if(width < 400) {width=500};
				       window.innerWidth=width;
					window.innerHeight=document.images[1].height+220;
				}
			}

function copyCat(pic,br,lg) 
{
faux = window.open('','newWin','dependent,resizable,top=20,left=20,width=550,height=380');
var fd = faux.document;
faux.resizeTo(br,lg);
fd.open();
fd.write('<html><head><title>MK Möbel St. Vith</title></head>');
fd.write('<body bgcolor="white" onLoad="window.focus()">');
fd.write('<p><a href="javascript:window.print()">Print - Drucken</a></p>');
fd.write('<table border="0" cellpadding="0" cellspacing="0" width="100%" height="80%">');
fd.write('<tr><td align="center" valign="middle"><img src="' + "../pictures/" + pic + '"></td></tr>');
fd.write('</table>');
fd.write('</body></html>');
fd.close();
}



function openHTML(source,width,height)
{	var win;
	var str;
	str  = ""; 
	str += "resizable=yes,scrollbars=yes,location=no,titlebar=no,"; 

	str += "width=" + width + ","; 
	str += "height=" + height; 
 		
	if ( window.screen) { 
		var ah = screen.availHeight - 30; 
		var aw = screen.availWidth - 10; 
 
		var xc = ( aw - width ) / 2; 
		var yc = ( ah - height ) / 2; 
 
		str += ",left=" + xc + ",screenX=" + xc; 
		str += ",top=" + yc + ",screenY=" + yc; 
	} 
	win=window.open(source,'MK',str);
	win.focus();
}
