//script-file

function checkFrameset()
{
	
	if(top.window.frames.length == 0)
	{
		window.location.href = "default.asp";
	}
	if(top.window.frames.length > 0)
	{
		//window.location.href = "first_page.asp";
	}
}

function showCounter()
{
	var c = top.meny.document.getElementById("counter");
	
	
	eval('c.style.visibility="visible"');
}