function viewport( vp , ico ){
	if( !(navigator.userAgent.toLowerCase().indexOf('opera')>0) ){
		document.write('<meta name="apple-mobile-web-app-capable" content="no" />');//←Mobile Safari 用。ホーム画面に登録したときに、アプリとして登録するか、ブックマークとして登録するかの選択。noだとブックマーク。
		document.write('<meta name="format-detection" content="telephone=no" />');//←Mobile Safari 用。勝手に電話番号としてリンクしたりとかしなくなる。
		document.write('<meta name="viewport" content="'+vp+'" />');//←iPhone用メタタグ。仮想ウィンドウの幅。device-widthは、端末の本来の幅に合わせるという意味。
		document.write('<link rel="apple-touch-icon" href="'+ico+'" />');//←iPhone用ホーム画面アイコン。
	}
}
