/*
 * UNIQLO MARCH Blogparts
 * 
 * --------
 * Copyright (c) 2008 IMG SRC Inc.
 *
 */

function uniqloMarchSetting() {
	this.base_url = "imgsrc.vo.llnwd.net/e1/march/blogparts/";
	this.parts_url = "index.html";
	this.add_url = "uniqlo-origin.imgsrc.co.jp/march/join2/p/bp";
	
	if (document.URL.match(/^https/)) {
		this.protocol = "https://";
	}else{
		this.protocol = "http://";
	}

};

/*
 * Flash Player Check
 * 
 */
var uniqloMarchFlashVersion = 9;
var uniqloMarchFlashInstalled = false;
var uniqloMarchPv = 6;

//Windows IE
if(navigator.appName == "Microsoft Internet Explorer"){
	document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n');
	document.write('on error resume next \n');
	document.write('contentVersion = ' + uniqloMarchFlashVersion + ' \n');
	document.write('uniqloMarchFlashInstalled = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & contentVersion))) \n');
	document.write('</SCR' + 'IPT\> \n');
//Others
}else if(navigator.plugins["Shockwave Flash"]){
	var sp = navigator.plugins["Shockwave Flash"].description.indexOf("Flash");
	var ep = navigator.plugins["Shockwave Flash"].description.lastIndexOf(" ");
	var aver = parseFloat(navigator.plugins["Shockwave Flash"].description.substring(sp+uniqloMarchPv,ep));
	if(aver >= uniqloMarchFlashVersion){
		uniqloMarchFlashInstalled = true;
	}
}


/*
 * Create IFRAME
 * 
 */
var uniqloMarchBlogparts;

function uniqloMarchInsert(nickname,nationId,userId) {
	
	document.write('<style type="text/css" media="all">');
	document.write('#uniqloMarchBlogparts{margin:0;padding:0;height:240px;width:160px;text-indent:0;line-height:1;font-size:1px;}');
	document.write('#uniqloMarchBlogparts iframe{margin:0;padding:0;height:240px;width:160px;border:0;}');
	document.write('</style>');
	
	uniqloMarchBlogparts = new uniqloMarchSetting();

	if(uniqloMarchFlashInstalled){
		var iframeParms = "?nickname=" + nickname + "&nationId=" + nationId + "&userId=" +userId;
		
		document.write('<div id="uniqloMarchBlogparts"><iframe width="160" height="240" frameborder="0" src="'+ uniqloMarchBlogparts.protocol + uniqloMarchBlogparts.base_url + uniqloMarchBlogparts.parts_url + iframeParms +'"></iframe></div>');
		
		var url = uniqloMarchBlogparts.protocol + uniqloMarchBlogparts.add_url;
		var tempURL = escape(window.location.href);
		var addParms = "?id=" + userId + "&url=" + tempURL;	
		document.write('<script type="text/javascript" charset="utf-8" src="' + url + addParms + '"></script>');
	}else{
		document.write('<div id="uniqloMarchBlogparts"><a href="http://www.adobe.com/go/getflashplayer" target="_blank"><img src="' + uniqloMarchBlogparts.protocol + uniqloMarchBlogparts.base_url + 'images/no_flashplayer.jpg" width="160" height="240" border="0" style="margin:0px;" /></a></div>');
	}
}