
<!--
function Openme(newin) {
flyout=window.open(newin,"flyout","resizable=no,scrollbars=yes,width=800,height=500,top=300,left=300")
}
// -->

function changeImage(img, width, height) {
document.getElementById('mainimage').src = img;
document.getElementById('popup').href= 'javascript:popupImage("' + img + '", "' + img + '", "500", "500");';
}

function ResizeToFit(dlg, picHeight, picWidth)
{
	var browser=navigator.appName;
	var version = parseFloat(navigator.appVersion);
	//document.write("version is " + version);
	var imgWidth;
	var imgHeight;
	imgWidth = picWidth + 180;
	if((browser == "Microsoft Internet Explorer") && (version <= 4))
	{
		imgHeight = picHeight + 250;
	}
	else if(browser=="Netscape")
	{
		imgHeight = picHeight + 250;
	}
	if(imgWidth < 500)
	{
		imgWidth = 580;
	}
	if(imgHeight < 500)
	{
		imgHeight = 580;
	}
	dlg.resizeTo(imgWidth, imgHeight);
}

function popupImage(name, img, width, height){
	 var x=document.getElementById("proid")
	var	proname=x.innerHTML;
 features = 
    "toolbar=no,location=no,directories=no,status=no,menubar=no," +
    "scrollbars=yes,resizable=no,width=" + width + ",height=" + height;
 dlg = window.open ("", name ,features);
 dlg.document.write("<html><head><title></title><link type=\"text/css\" rel=\"stylesheet\" href=\"http://site.dlawlesshardware.com/ystore/css/style.css\" /></head>");


 dlg.document.write("<body onLoad=\"javascript:opener.ResizeToFit(self, picImg.height, picImg.width);\"><center>");
 dlg.document.write("<table width=\"500\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td align=\"center\" valign=\"top\" class=\"enlarge-main-tab\"><table width=\"100%\" border=\"0\" align=\"left\" cellpadding=\"0\" cellspacing=\"0\"><tr><td align=\"left\" valign=\"top\"><a href=\"javascript:window.close();\"><img src=\"http://site.dlawlesshardware.com/ystore/images/btn-close.jpg\" alt=\"\" width=\"65\" height=\"19\" border=\"0\" class=\"btn-close\" style=\"cursor: hand;\" /></a><img src=\"http://site.dlawlesshardware.com/ystore/images/enlarge-logo.jpg\" alt=\"\" width=\"133\" height=\"45\" class=\"enlarge-logo\" /></td></tr><tr><td align=\"left\" valign=\"top\" class=\"enlarge-white-bg\"><table width=\"100%\" border=\"0\" align=\"left\" cellpadding=\"0\" cellspacing=\"0\"><tr><td align=\"left\" valign=\"top\" class=\"enlarge-pro-name\">" + proname +"</td></tr><tr><td align=\"center\" valign=\"top\" class=\"enlarge-pro-area\"><img name=\"picImg\" src=" + img + " /></td></tr></table></td></tr></table></td></tr></table></body></html>");

 dlg.document.close();
}