function DebugOpen()
{
	dbg = document.getElementById('Debug');
	dbg.style.height = '300px';
	dbg.style.width = '100%';
}

function DebugClose()
{
	dbg = document.getElementById('Debug');
	dbg.style.height = '20px';
	dbg.style.width = '20px';
}

function printwindow()
{   
	win = open(document.location.href + '/print_page', null, "height=400,width=760,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}
	
function sendwindow(prefix)
{ 
	win = open(prefix+"ModShow/ShowEmailDialog?url="+document.location.href+"&title="+document.title,null,"height=350,width=600,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}

function addbookmark()
{
	window.external.AddFavorite( location.href, document.title );
}