// javascript utf-8
var str = window.location.search.slice(1);
var size = str.split("=");
var select_size = size[1];
if (select_size == undefined) {
	select_size = "normal";	
}
switch (select_size) {
	case "normal": var sizestr = "180x240(大)"; break;
	case "small" : var sizestr = "150x200(小)"; break;
}
var loader_url = "http://www.vap.co.jp/L-movie/blogparts/js/bp_loader.js";
function defsize(num) {
	switch (num) {
		default: select_size = "normal"; break;
		case 0:
			select_size = "normal";
			break;
		case 1:
			select_size = "small";
			break;
	}
	OpenBlogParts();
}
function updateScriptField() {
	var html = "";
	html += '<!-- L change the World 1 -->' + "\n";
	html += '<script type="text/javascript">var bpsize="'+select_size+'";</script>' + "\n";
	html += '<script type="text/javascript" src="'+loader_url+'"></script>' + "\n";
	html += '<!-- /L change the World 1 -->';
	document.scriptarea.scriptField.value = html;
}
function OpenBlogParts() {
	window.location.href = "?size=" + select_size;
}
