function s_cart(str){

	var c=document.cookie.split(";");
	var f=0;
	for(var i=0;i<c.length;i++){
		c[i]=c[i].split("=");
		if(c[i][0].indexOf("c")!=-1){
			f=1;
			break;
		}
	}
	if(f){
		var st="";
		var l="<td width=\"21\" align=\"center\">";
		l+="<a href=\""+st+"https://www.e-organichouse.com/shopping/cart.php\">";
		l+="<img src=\""+st+"./cmn_img/head_icon05.gif\" alt=\""+str+"\" width=\"15\" height=\"15\" border=\"0\">";
		l+="</a>";
		l+="</td>";		
		l+="<td width=\"90\">";
		l+="<a class=\"ma\" href=\""+st+"https://www.e-organichouse.com/shopping/cart.php\">";
		l+=str;
		l+="</a>";
		l+="</td>";
		document.open();
		document.write(l);
		document.close();
	}
}

function s_contact(str){
	var l='<td width="21" align="center"><a href="https://www.e-organichouse.com/contact/index.php"><img src="./cmn_img/head_icon03.gif" alt="'+str+'" width="15" height="15" border="0"></a></td>';
	l+='<td width="90"><a class="ma" href="https://www.e-organichouse.com/contact/index.php">'+str+'</a></td>';
	document.open();
	document.write(l);
	document.close();
}