function PopWindow(myimage){
			var win=null;
			var w= 640;
			var h= 585;
			settings="width=" + w + ",height=" + h + "left=0,top=0,scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes";
			win=window.open("","",settings);
			if(win!=null){
				var mypagecontent="<ht"+"ml><he"+"ad><ti"+"tle>$item.title - Larger View</ti"+"tle>";
				mypagecontent+="<link href='/$appSettingsDTO.appName/store/$vendorSettingsDTO.vendorId/assets/css/product.css' rel='stylesheet' type='text/css'/></he"+"ad>";
				mypagecontent+="<bo"+"dy style='background:#ffffff'><di" + "v id='largerPop'>";
				mypagecontent+="<img src="+myimage+" name=image><p><a href=javascript:self.close();>Close Window</a></p>";
				mypagecontent+="<di" + "v></b"+"ody></ht"+"ml>";
				win.document.write(mypagecontent);
				win.document.close();
			}
			win.focus();
		}


function EmailFriend()
{
	strDocTitle = document.title;
	strDocURL = document.URL;
	rExp = /&/gi;
	strDocTitle2 = strDocTitle.replace(rExp, "%26");
	rExp = / /gi;
	strDocTitle3 = strDocTitle2.replace(rExp, "+");
	settings = 'left=0,top=0,scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes,height=575,width=500';
	hWin = window.open("http://www.taunton.com/pages/emailfriend.asp?intgrp=custserv&title=" + strDocTitle3 + "&URL=" + strDocURL, "SendArticle", settings, true);
	hWin.focus();
	if (hWin.opener == null) hWin.opener = self;
}