/*************************************************************/
/*                                                           */
/*	underconst.js                                            */
/*                                                           */
/*	http://feefifofum.cocolog-nifty.com/blog/                */
/*                                                           */
/*************************************************************/
var STR = location.href;
var STR1 = STR.split("?");
var flgUC = 0;

dynaLoadUnderConst();

/******************************************/
/*                                        */
/******************************************/
function dynaLoadUnderConst()
{
	/* show blog when it is not uc */
	if( flgUC != 1 ) {
		return;
	}
	
	/* check params */
	if (STR1.length > 1)
	{
		var STR2 = STR1[1].split("?");

		/* STR2.shift(); */
		for (i in STR2)
		{
			switch( STR2[i] ) {
				/* show blog when it has "adm" */
				case "adm":
					break;
					
				/* jump to UC when it has NOT "adm" */
				default:
					jumpToUcPage();
					break;
			}
		}
	}
	/* jump to UC when there is no param */
	else {
		jumpToUcPage();
	}
}

/******************************************/
/*                                        */
/******************************************/
function jumpToUcPage()
{
	location.replace("http://feefifofum.cocolog-nifty.com/blog/underconstruction.html");
}
