/**
 * Hierin zijn allerlei functie opgenomen die voor AdventVision nodig zijn
 */
/**
 * Deze functie is om de popup een bepaalde format te geven
 *
 * @param WinOpenFilename(href, title, width, height)
 */
function WinOpenFilename(href, title, width, height)
{
	msg=window.open(href, title,"status=no,location=no,toolbar=no,directories=no,resizable=no,width=" + width +",height=" + height + ",scrollbars=yes");
}

function empty() {
	document.search.search.value = "";
}

function empty_email() {
	document.login.username.value = "";
}

function empty_password() {
	document.login.password.value = "";
}

function empty_reaction_content() {
	if (document.forum.content.value == "Plaats hier uw reactie..."){
		document.forum.content.value = "";
	}
	if (document.forum.email.value == ""){
		document.forum.email.value = "Uw emailadres...";
	}
	if (document.forum.name.value == ""){
		document.forum.name.value = "Uw naam...";
	}
	if (document.forum.robotcode.value == ""){
		document.forum.robotcode.value = "Vul de code in...";
	}
}

function empty_reaction_name() {
	if (document.forum.name.value == "Uw naam..."){
		document.forum.name.value = "";
	}
	if (document.forum.email.value == ""){
		document.forum.email.value = "Uw emailadres...";
	}
	if (document.forum.content.value == ""){
		document.forum.content.value = "Plaats hier uw reactie...";
	}
	if (document.forum.robotcode.value == ""){
		document.forum.robotcode.value = "Vul de code in...";
	}
}

function empty_reaction_email() {
	if (document.forum.email.value == "Uw emailadres..."){
		document.forum.email.value = "";
	}
	if (document.forum.content.value == ""){
		document.forum.content.value = "Plaats hier uw reactie...";
	}
	if (document.forum.name.value == ""){
		document.forum.name.value = "Uw naam...";
	}
	if (document.forum.robotcode.value == ""){
		document.forum.robotcode.value = "Vul de code in...";
	}
}
function empty_reaction_code() {
	if (document.forum.robotcode.value == "Vul de code in..."){
		document.forum.robotcode.value = "";
	}
	if (document.forum.content.value == ""){
		document.forum.content.value = "Plaats hier uw reactie...";
	}
	if (document.forum.name.value == ""){
		document.forum.name.value = "Uw naam...";
	}
	if (document.forum.email.value == ""){
		document.forum.email.value = "Uw emailadres...";
	}
}
