/************************************************
	Flash loader
************************************************/

	var flashvars = null;
	var params = {	wmode:"transparent"	};
	var attributes = null;

function loadZukai(movie)
{
	swfobject.embedSWF(movie, "menokouzou_flash", "800", "560", "9.0.0", null , flashvars , params , attributes);
}


/************************************************
	TOP PAGE swf/img changer
************************************************/

function checkCount(url,type)
{
	loadZukai(url);
}

/************************************************
	POPUP
************************************************/


function autoPOP()
{
	var x = document.getElementsByTagName('a');
	for (var i=0;i<x.length;i++)
	{
		if (x[i].getAttribute('className') == 'popup' || x[i].getAttribute('class') == 'popup')
		{
			x[i].onclick = function () {
			return winOpen(this.href)
			}
		}
	}
	
};

function winOpen(url) {
	window.open(
		url,
		'popup',
		'width=800,height=660,scrollbars=0,resizable=1'
	).focus();
	
	return false;
		
};

window.onload=autoPOP;




