function statusInvisible(){
window.status = '';
return true;
}
if (document.layers)
document.captureevents(event.mouseover | event.mouseout);
document.onmouseover = statusInvisible;
document.onmouseout = statusInvisible;

function sendMail(){
	var mailAddress = 'info-sp@jp.sonystyle.com';//メールアドレス
	
	var subject;
	
	if(navigator.userAgent.indexOf("Win") != -1) subject = '%81y%83%5c%83j%81%5b%81%40%83v%83%8c%83%5b%83%93%83g%83L%83%83%83%93%83y%81%5b%83%93URL%81z';//WindowsはShift-jisでエンコード
    else if(navigator.userAgent.indexOf("Mac") != -1) subject = '【ソニー　プレゼントキャンペーンURL】';
	
	var mail = '『世界の頂上決戦を体感しよう。FIFA クラブワールドカップ ジャパン 2008%0D%0A';
	mail += 'フラッグベアラー権＆決勝戦ペアチケット プレゼントキャンペーン』%0D%0A';
	mail += 'http://www.jp.sonystyle.com/Special/Cwc2008/index.html';
	
	if (navigator.userAgent.indexOf("Win") != -1 && navigator.userAgent.indexOf("Gecko/")!=-1) {
		document.write('<a href="mailto:?subject=' + subject + '">&gt;&gt;ページのURLを友人にメールする</a>');
	}
	else{
		document.write('<a href="mailto:?subject=' + subject + '&body=' + mail + '">&gt;&gt;ページのURLを友人にメールする</a>');
	}
}