function enlargePhoto(img, name, wid, hi){
	imgPro = new Image();
	imgPro.src=(img);
	shownPhoto(img, name, wid, hi);
}

function shownPhoto(img, name, wid, hi){
features = 
    "toolbar=no,location=no,directories=no,status=no,menubar=no," +
    "scrollbars=no,resizable=yes,width=" + wid + ",height=" + hi;
 dlg = window.open ("","Details",features);
 dlg.document.write("<html><head><title>" + name + " Zoom</title></head>");
 dlg.document.write("<body bgcolor=white><center>");
 dlg.document.write("<table width=100% height=100%>");
 dlg.document.write("<tr><td align=center valign=middle>");
 dlg.document.write("<b><font face=Arial style=\"font-size:14px; font-weight:lighter;\" >" + name + "</font></b><br><br>");
 dlg.document.write("<img src=" + img + ">");
 dlg.document.write("</td></tr>");
 dlg.document.write("<tr><td align=center valign=middle>");
 dlg.document.write("<a href=# onClick=window.close();>");
 dlg.document.write("<font size=-1 face=Arial>Click to close</font></a>");
 dlg.document.write("</td></tr>");
 dlg.document.write("</table></body></html>");
}

function email_to_friend(product_name) {
   var product_name = encodeURIComponent(product_name);
   var page_link = window.location;
   url =  'http://build.exclusiveconcepts.com/bms/?q=email&product_name='+product_name+'&link='+page_link;


   window.open(url, 'EmailtoFriend', 'menubar=no,width=650,height=375,scrollbars=no');
}

function readCookie(name) {
 var cookieValue = "";
 var search = name + "=";
 if(document.cookie.length > 0) {
 offset = document.cookie.indexOf(search);
 if (offset != -1) {
 offset += search.length;
 end = document.cookie.indexOf(";", offset);
 if (end == -1) end = document.cookie.length;
 cookieValue = unescape(document.cookie.substring(offset, end));
 }
 }
 return cookieValue;
}

	function printMode() {
		var tagName = "script";
		var regExp= new RegExp ("<" + tagName + "[^.]*\/" + tagName + ">", "gi");
		var d = document.body;
		var w = window.open("", "printMode", "width=500,height=500,resizable=1,menubar=0,toolbar=1,scrollbars=1");
		w.document.write('<html><head>');
		w.document.write(document.getElementsByTagName('head')[0].innerHTML.replace(regExp, ""));
		w.document.write('<link rel="stylesheet" href="/lib/yhst-25660673736769/printstyle.css" media="screen,print">');
		w.document.write('</head><body>');
		w.document.write(document.body.innerHTML.replace(regExp, ""));
		w.document.write('</body></html>');
		w.document.close();
	}
