window.onload = function()
{
	// Set Menu button image functions
	Set_Menu_images( "donate" );
	Set_Menu_images( "download" );
}

function Open_Screenshot( name )
{
	imgsrc = "images/screenshot/" + name + ".png";

	window.open( imgsrc, "Screenshot " + name, "width=1040, height=784" );
}

function Get_Email( email_name, email_domain, user_name, as_link )
{
	var str_email = email_name + "@" + email_domain;
	
	if( !as_link )
	{
		return str_email;
	}
	
	if( user_name.length == 0 )
	{
		user_name = str_email;
	}
	
	return "<a href=\"mailto:" + str_email + "\">" + user_name + "</a>";
}

