// JavaScript Document
function ViewSendFriend(DIV)
{
	var Div = $(DIV)
	if(Div.style.position == 'absolute' &&  Div.style.visibility == 'hidden')
	{
		Div.style.position = ''
		Div.style.visibility = ''
		Div.style.backgroundColor = ''
		Div.style.border = ''
		Div.style.width = '100%'
	}
	else
	{
		Div.style.position = 'absolute'
		Div.style.visibility = 'hidden'
		Div.style.backgroundColor = ''
		Div.style.border = ''
		Div.style.width = '50%'
	}
}
function HiddenDiv(ID)
{
	var TD = $(ID)
	if(TD != null)
	{
		TD.style.width = '290px'
		TD.style.visibility = 'hidden'
		TD.style.position = 'absolute'
	}
	else
		window.close()
}
function ShowDiv(ID)
{
	var TD = $(ID)
	TD.style.visibility = ''
	//TD.style.position = ''
}
function Close()
{
	window.close
}