function closewindow()
{
	if (document.getElementById && document.createTextNode)
	{
		var closelink=document.getElementById ('closeme');
		if (closelink) 
		{
			closelink.onclick=function(){window.close();return false}
		}
	}	
}

window.onload = function()
{
	closewindow();
}