//Opens a new window and returns false to his parent window, so the parent window will not reload
function linkNewWindow($url){
	window.open($url);
	return false;
}

function openCharMap(textField){
	CharWindow = window.open('tools/specialchars/charbox.php?fieldname=' + textField,'Pop-up','toolbar=no,menubar=no,status=no,resizable=no,width=560,height=310');
}
