function chknotnull(x)
{
	myflag=false
	if (x=="")
		return false;
	else
	{
		for (i=0;i<x.length;i++)
		{
			if (x.charAt(i).indexOf(" ")<0)
				myflag=true;
		}
		return myflag;
	}
return true;
}


function submitForm(msg)
{
	document.form1.action = msg
	document.form1.submit();

}

function fontSize(number){document.getElementById('bgcolor').style.fontSize = number + "px";}