

function popLarge(prodName, prodImage, width, height)
{
	var windowWidth = width+10;
	var windowHeight = height+38;
	var tableWidth = width+10;
	var tableHeight = height+38;

	var popWin = window.open("", "largeImage", "width="+windowWidth+", height="+windowHeight+" ,top=10,left=10");
	popWin.document.write("<html>\n");
	popWin.document.write("<head>\n");
	popWin.document.write('<meta http-equiv="content-type" content="text/html;charset=iso-8859-1" />\n');
	popWin.document.write('<meta name="keywords" content="keywords for this page" />\n');
	popWin.document.write('<meta name="title" content="'+prodName+'" />\n');
	popWin.document.write('<title>Cadera Kids - '+prodName+'</title>\n');
	popWin.document.write("<link rel='stylesheet' href='/popupfiles/styles/caderaStyleSheet.css' type='text/css'>\n");
	popWin.document.write("</head>\n");
	popWin.document.write('<body topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" marginheight="0" marginwidth="0" bgcolor="#ffffff">\n');
	popWin.document.write('<table width="'+tableWidth+'" border="0" cellspacing="0" cellpadding="0">\n');
	popWin.document.write("<tr>\n");
	popWin.document.write('<td height="5"><img src="/popupfiles/images/spacer.gif" alt="" height="5" border="0" /></td>\n');
	popWin.document.write("</tr>\n");
	popWin.document.write("<tr>\n");
	popWin.document.write('<td width="5"><img src="/popupfiles/images/spacer.gif" alt="" width="5" border="0" /></td>\n');
	popWin.document.write('<td><img class="imageBorder" src="'+prodImage+'" width="'+width+'" height="'+height+'" /></td>\n');
	popWin.document.write('<td width="5"><img src="/popupfiles/images/spacer.gif" alt="" width="5" border="0" /></td>\n');
	popWin.document.write("</tr>\n");
	popWin.document.write("</table>\n");
	popWin.document.write('<table width="'+tableWidth+'" border="0" cellspacing="0" cellpadding="0">\n');
	popWin.document.write("<tr>\n");
	popWin.document.write('<td width="5"><img src="/popupfiles/images/spacer.gif" alt="" width="5" border="0" /></td>\n');
	popWin.document.write('<td class="popUpText">'+prodName+'</td><td align="right"><a href="javascript:window.close();"><img src="/popupfiles/images/closeWindow.gif" width="96" height="19" border="0" /></a></td>\n');
	popWin.document.write('<td width="5"><img src="/popupfiles/images/spacer.gif" alt="" width="5" border="0" /></td>\n');
	popWin.document.write("</tr>\n");
	popWin.document.write("</table>\n");
	popWin.document.write("</body>\n");
	popWin.document.write("</html>\n");
	popWin.document.close();
	popWin.focus();
}

