
function getOSType()
{
    var RetCode = "";
    var uAgent  = navigator.userAgent.toUpperCase();
    
    if (uAgent.indexOf("MAC") >= 0)	RetCode = "MacOS";
    if (uAgent.indexOf("WIN") >= 0)	RetCode = "Windows";
    if (uAgent.indexOf("X11") >= 0)	RetCode = "UNIX";
    
	return RetCode;
}


function sortMailType()
{
	var type = getOSType();
	
	if( type == "Windows" ) {
		document.getElementById("ordermade").setAttribute("href", "mailto:info@nypowerhouse.com?subject=%83I%81%5b%83_%81%5b%83%81%83C%83h%8f%d1%91%9c%8b%c8%20%90%a7%8d%ec%88%cb%97%8a");
		document.getElementById("web_contact").setAttribute("href", "mailto:info@nypowerhouse.com?subject=%93%96%83E%83F%83u%83T%83C%83g%82%c9%8a%d6%82%b7%82%e9%82%b2%88%d3%8c%a9%81E%82%b2%8e%bf%96%e2");
	}
	else if( type == "MacOS" ) {
		document.getElementById("ordermade").setAttribute("href", "mailto:info@nypowerhouse.com?subject=オーダーメイド肖像曲 制作依頼");
		document.getElementById("web_contact").setAttribute("href", "mailto:info@nypowerhouse.com?subject=ウェブサイトに関するご意見・ご質問");
	}
}


sortMailType();