function Temp_Unavailable()
{
	alert( "Sorry, due to maintenance of the site, this item "
		+ " is not available for a few days\n\nWith kind "
		+ "regards, the ABBA Fanclub" );
}

function Meel2Ontv(Domein, Gebruiker)
{
	var cmdpre = "m" + "" + "a";
	var cmdpost = "t";
	var location = "";

	cmdpre += "i"; cmdpost += "o";

	location = cmdpre + "l" + cmdpost + ":"
		+ Gebruiker + "&#64;" + Domein;

	//alert( "<a href=\"javascript:void(0);\" "
	//+ "onClick=\"window.location='" + location + "'\" "
	//+ "onmouseover=\"window.status='Send an email'; return true;\" "
	//+ "onmouseout=\"window.status='';return true;\">"
	//+ Gebruiker + "&#64;" + Domein + "</a>" );

	document.write( "<a href=\"javascript:void(0);\" "
	+ "onClick=\"window.location='" + location + "'\" "
	+ "onmouseover=\"window.status='Send an email'; return true;\" "
	+ "onmouseout=\"window.status='';return true;\" class=\"link\">"
	+ Gebruiker + "&#64;" + Domein + "</a>" );
}

function MeelOmschr(Domein, Gebruiker, Kliktekst)
{
	var cmdpre = "m" + "" + "a";
	var cmdpost = "t";
	var location = "";

	cmdpre += "i"; cmdpost += "o";

	location = cmdpre + "l" + cmdpost + ":"
		+ Gebruiker + "&#64;" + Domein;

	document.write( "<a href=\"javascript:void(0);\" "
	+ "onClick=\"window.location='" + location + "'\" "
	+ "onmouseover=\"window.status='Send an email'; return true;\" "
	+ "onmouseout=\"window.status='';return true;\" class=\"link\">"
	+ Kliktekst + "</a>" );
}

function Check_MemberId( theForm )
{
	var memberid = (theForm.MemberNo)? theForm.MemberNo.value: null;

	if ( memberid == null ) { return true; }

	if ( memberid == "" ) { return true; }

	if (	!memberid.match(/^\d+$/)	)
	{
		alert("Please, use only digits in the field MemberNo.");
		theForm.MemberNo.focus();
		return false;
	}

	if (	memberid.length > 6	)
	{
		alert( "Use at most 6 digits in the field MemberNo." );
		theForm.MemberNo.focus();
		return false;
	}

	return true;
}

function PP_business( Domein, Gebruiker )
{
	document.write( '<input type="hidden" name="business" value="'
		+ Gebruiker + "&#64;" + Domein + '" />' + "\n" );
}

function Show_Picture( UrlFoto )
{
	window.open('/toonfoto.html?' + UrlFoto,'Fotokijker',
		'width=625,height=625,scrollbars=no,toolbar=no,location=no');
	return false
}

