function gastenboekAddB(){
	document.gastenboek.gastenboek4.value += "[B]...[/B]";
	document.gastenboek.gastenboek4.focus();
}
function gastenboekAddU(){
	document.gastenboek.gastenboek4.value += "[UN]...[/UN]";
	document.gastenboek.gastenboek4.focus();
}
function gastenboekAddI(){
	document.gastenboek.gastenboek4.value += "[IT]...[/IT]";
	document.gastenboek.gastenboek4.focus();
}
function gastenboekAddURL(){
	document.gastenboek.gastenboek4.value += "[URL=http://URL_Hier_Invullen]...[/URL]";
	document.gastenboek.gastenboek4.focus();
}
function gastenboekAddEMail(){
	document.gastenboek.gastenboek4.value += "[EMAIL=EMail_Hier_Invullen]...[/EMAIL]";
	document.gastenboek.gastenboek4.focus();
}

function showSmileys() {
	var W = 250;	//default width
	var H = 200; //default height
	var X = (screen.width-(W))/2;
	var Y = (screen.height-(H))/2;
	window.open('gastenboek.php?nav=smileys',"Popup",'top='+Y+',left='+X+',width=' + W + ',height=' + H + '');
}

function addSmiley(smiley){
	opener.document.gastenboek.gastenboek4.value += smiley;
	window.close();
	opener.document.gastenboek.gastenboek4.focus();
}

function cancelSmiley(){
	window.close();
	opener.document.gastenboek.gastenboek4.focus();
}

$(function() {
    $('.popupbox').popupBox({overlayBgColor: '#ccc',overlayOpacity: 0.8});  
    
});

