// JavaScript Document
<!--
function showImg(imaj,mynode) { //v2.0
	var xmlDoc
	var nodes
	var countProds;
	xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
	xmlDoc.async=false;
	xmlDoc.load("kost_kh_data.xml");
	nodes = xmlDoc.documentElement.childNodes;
	p = mynode;
	//
	var winName = "";
	var features = "width=500,height=585";
	msg=open("",winName,features);
	msg.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">');
	msg.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">');
	msg.document.write('<title>LAVANTA</title>');
	msg.document.write('<link href="styles.css" rel="stylesheet" type="text/css">');
	msg.document.write('<body leftmargin="0px" topmargin="0px" bgcolor="#584581">');
	msg.document.write('<table width="500" border="0" cellspacing="0" cellpadding="0" align="center">');
	msg.document.write('<tr><td colspan="3">');
	msg.document.write('<img src="'+imaj+'.jpg" width="500" height="500" border="0">');
	msg.document.write('</td></tr>');
	//
	// Bilgiler : Start
	msg.document.write('<tr><td height="15" colspan="3"><img src="images/spacer.gif" width="100" height="15" border="0"></td></tr>');
	msg.document.write('<tr><td width="20"></td><td class="tdzoomprops">');
	msg.document.write('<b>&#220;r&#252;n No: </b>'+nodes.item(p).attributes[0].value+'<br>');
	msg.document.write('<b>&#220;r&#252;n Ad&#305;: </b>'+nodes.item(p).attributes[5].value+'<br>');
	msg.document.write('<b>Beden: </b>'+nodes.item(p).attributes[1].value+'<br>');
	msg.document.write('<b>Adet: </b>'+nodes.item(p).attributes[2].value+'</td>');
	msg.document.write('<td class="tdzoomprops"><b>Renk: </b>'+nodes.item(p).attributes[6].value+'<br>');
	msg.document.write('<b>Par&#231;alar: </b>'+nodes.item(p).attributes[7].value+'<br>');
	msg.document.write('<b>&#220;retim: </b>'+nodes.item(p).attributes[4].value+'<br>');
	msg.document.write('<b>Tarih: </b>'+nodes.item(p).attributes[3].value+'<br></td>');
	// Bilgiler : End
	//
	msg.document.write('</tr></table></body></html>');
}
//-->
