if (document.location == top.location)
{
	top.location = "index.php";
}

function Init()
{
	//parent.PreloadIcons();
	var _minHeight = 1200;
	var _scrollHeight = document.body.scrollHeight;
	if(_scrollHeight < _minHeight) _scrollHeight = _minHeight;
	parent.ResizeIFrame("contentIFrame",_scrollHeight);
	parent.scrollTo(0,0);
}

var arrUrls = new Array();

function ShowStatus(id)
{
	parent.window.status = arrUrls[id];
	return true;
}

function ClearStatus()
{
	parent.window.status = "";
	return true;
}