var newwindow = '';

function popitup(url, width, height) {
	if (!newwindow.closed && newwindow.location) {
		newwindow.location.href = url;
	}
	else {
		if(!width) { width = 500; }
		if(!height) { width = 500; }
		newwindow=window.open(url,'name', height ,width);
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {newwindow.focus()}
	return false;
	
	/* USAGE 
		<a href="popupex.html" onclick="return popitup('popupex.html')">Link to popup</a>
	*/
}

function toggleEditor(id) {
	if (!tinyMCE.getInstanceById(id))
		tinyMCE.execCommand('mceAddControl', false, id);
	else
		tinyMCE.execCommand('mceRemoveControl', false, id);
}