/* --------------------------------------------------
	setFontSize()
	font size on mac safari
 -------------------------------------------------- */
	function setFontSize(){
		var u = navigator.userAgent;
		if(u.match(/Mac|PPC/) && u.toLowerCase().indexOf("safari") != -1){
			var l = document.createElement("link");
			l.href = "/wp-content/themes/riedel/css/safari.css";
			l.rel = "stylesheet";
			l.type = "text/css";
			l.media = "all";
			document.getElementsByTagName("head")[0].appendChild(l);
		}
	}
	setFontSize();

/* --------------------------------------------------
	popupwindow
 -------------------------------------------------- */
	function riedelPopupWindow(){
		window.open('http://www.riedel.co.jp/wp-content/img/shared/txt_shop.html','win1','width=300,height=150,resizable=yes,scrollbars=yes');
		return false;
	}

