
	setStatus("kyokushin")

	function setStatus(strStatus)
	{
		window.status = strStatus
		
	}
	
 /* positioning extended */
	function getWindowHeight() 
	{
		var windowHeight = 0;
		if (typeof(window.innerHeight) == 'number') {
			windowHeight = window.innerHeight;
		}
		else {
			if (document.documentElement && document.documentElement.clientHeight) {
				windowHeight = document.documentElement.clientHeight;
			}
			else {
				if (document.body && document.body.clientHeight) {
					windowHeight = document.body.clientHeight;
				}
			}
		}
		return windowHeight;
	}

	function test()
	{
		alert(getWindowHeight())
	}
	
	function scaleColumn()
	{
		var headerElement = document.getElementById('pageHeader');
		var headerHeight = headerElement.offsetHeight;

		var columnsElement = document.getElementById('columns');
	  //columnsElement.style.border = "1px solid gray"
		columnsElement.style.height = (getWindowHeight() - headerHeight - 19 - 15) +"px"

	}

	function openVideoWindow(strUrl,strName,strSettings)
	{
		var strName = strName || 'kyoWindow';
		var strSettings = strSettings|| 'width=400,height=450,status=no,resizeable=yes,toolbar=no,menubar=no';
		var kyoWindow = window.open(strUrl,strName,strSettings,true)
		kyoWindow.focus();
		return false;
	}

	window.onload = function() 
	{
		//scaleColumn()//setContent();
	}
	window.onresize = function() 
	{
		//scaleColumn()//setContent();
	}

