/* JAT 11/28/07 - for storefront 1 (lake erie monsters) only!! adding in the s_id=1 into url strings */
function shareproduct(PageURL,args,SURL) 
{ 

var plink;
var emailbody;
var url;
if (args.indexOf("=")<0 ||args.indexOf("&")<0 ){
args="";
}
	if (user_guid !=' ') 
	{
		PageURL =PageURL + '?s_id=1&mscssid='+ user_guid+ '&dept_id='+dept_id+ '&pf_id='+pf_id+ '&'+ args ;
	}else{
		PageURL =PageURL + '?s_id=1&dept_id='+dept_id+ '&pf_id='+pf_id+ '&'+ args ;
	}
	
	plink=i_jscript_uu_rootURL+"product.asp?s_id=1&dept_id=" + dept_id + "&pf_id="+ pf_id +"&" ;
	emailbody="Dear #RecipientName#,<BR> #Text_field_3# <BR><BR>";
	if (product_image[0].image!=""){
	emailbody = emailbody + "<A HREF=\"#URL#\" ><img src=\""+i_jscript_uu_rootURL+"assets/product_images/"+product_image[0].image+"\" border=0 alt=\""+ product_name+"\" ></a>" ;
	}
	emailbody = emailbody + "<A HREF=\"#URL#\" >"+ product_name + "</a><BR>" ;
	emailbody = emailbody + "from #FromName#  at <A href=\"mailto:#FromEmail#\">#FromEmail# <BR>" ;
	window.location=PageURL +"referer="+escape(plink)+"&email_body="+escape(emailbody)+"&target="+ escape(window.location.href)+"&";
	//Note: This return is required as well
	// false tells the browser to ignore the default action entirely
	//usage Click Here II
	 return(false);
} //end shareproduct