
// ============================
//  file name : main.js
//  jQuery required.
// ============================


// ====================================================================================
// popupWindow ver.1.2
function popupWindow (url, width, height, option, windowName) {	
	if (!width) width = window.innerWidth || document.documentElement.clientWidth;
	if (!height) height = window.innerHeight || document.documentElement.clientHeight;
	if (!option) option = 'menubar=yes, toolbar=yes, location=yes, status=yes, scrollbars=yes, resizable=yes';
	if (!windowName) windowName = "popup";
	var x = (screen.availWidth - width)/2;
	var y = (screen.availHeight - height)/2;
	var o = option+', width='+width+', height='+height+', left='+x+', top='+y;
	var blockMessage = "ウィンドウがお使いのブラウザでポップアップブロックされました。\nポップアップブロックを解除してください。";
	var win = window.open(url, windowName, o);
	if (win) {
		win.focus();
	} else {
		alert(blockMessage);
	}
}

// ====================================================================================
// subWinOpen
function subWinOpen (url) {	
	var width = 720;
	var height = 750;
	var option = 'menubar=no, toolbar=no, location=no, status=no, scrollbars=yes, resizable=yes';
	var windowName = "subWin";
	var x = (screen.availWidth - width)/2;
	var y = (screen.availHeight - height)/2;
	var o = option+', width='+width+', height='+height+', left='+x+', top='+y;
	var blockMessage = "ウィンドウがお使いのブラウザでポップアップブロックされました。\nポップアップブロックを解除してください。";
	var win = window.open(url, windowName, o);
	if (win) {
		win.focus();
	} else {
		alert(blockMessage);
	}
}

// ====================================================================================
// Twitterに投稿
$(function(){
	var postTwitter = {};
	postTwitter.setup = function () {
		var href = location.href;
		$('dd.twitter a').each(function(){
			var pageUrl = encodeURIComponent(href);
			$(this).attr('href','http://twitter.com/home?status='+pageUrl);
		});
	};
	postTwitter.setup();
});

// ====================================================================================
// facebook
$(function(){
	var shareFacebook = {};
	shareFacebook.setup = function () {
		var href = location.href;
		$('dd.facebook a').each(function(){
			var pageUrl = encodeURIComponent(href);
			$(this).attr('href','http://www.facebook.com/share.php?u='+pageUrl);
		});
	};
	shareFacebook.setup();
});

// ====================================================================================
// E-mail
$(function(){
	var email = {};
	email.setup = function () {
		var href = location.href;
		$('dd.email a').each(function(){
			var title = encodeURI('FEVER X JAPAN SPECIAL SITE');
			var pageUrl = encodeURIComponent(href);	
			$(this).attr('href','mailto:?subject='+title+'&body='+pageUrl);
		});
	};
	email.setup();
});

