function setTopMenu()
{
	if(getCookie('cookie_nickname'))
	{
		document.getElementById('menuLogout').style.display='inline';
	}
	else
	{
		document.getElementById('menuLogin').style.display='inline';
		document.getElementById('menuForgot').style.display='inline';
	}
}
function CHECK_FS(thePage)
{
	/*if(!thePage) thePage='blank.htm'
	if(self.window == parent.window)
	{
		window.open('/site/mixco_fs.htm?page='+thePage,'_top')
	}*/
	return;	
}

function OPEN_WINDOW(myPage,theWidth,theHeight)
{
	
	var wProperties =""
	if(!theWidth)
	{
		theWidth = 400
	}
	if(!theHeight)
	{
		theHeight = 460
	}
	//wProperties += "status=" + m.status.value
	//wProperties += ",location=" + m.location.value
	//wProperties += ",directories=" + m.directories.value
	// wProperties += ",resizable=" + m.resizable.value
	//wProperties += ",copyhistory=" + m.copyhistory.value
	//wProperties += ",screenX=130"
	//wProperties += ",screenY=100"
	wProperties += ",toolbar=no"
	wProperties += ",scrollbars=yes"
	//wProperties += ",menubar=" + m.menubar.value
  //wProperties += ",modal=" + m.modal.value
	wProperties += ",height=" + theHeight
	wProperties += ",width=" + theWidth
	wProperties += ",left=100"
	wProperties += ",top=100"
	//wProperties += ",dependent = 'yes'"
  
  var w = open('','popup',wProperties)
	w.location.href = myPage
	w.focus()
	return
}

