/* open editor in new window without extra toolbars */
function popup(url) {
	params  = 'resizable=yes, scrollbars=no, toolbar=no, menubar=no, location=no, status=no, directories=no, width=' + screen.width + ', height=' + screen.height;
	newwin=window.open(url,'Editor', params);
	if (window.focus) {newwin.focus()}
 	return false;
}

function openEditorWithLogin() { 
	var args = 'resizable=yes, scrollbars=no, toolbar=no, menubar=no, location=no, status=no, directories=no, width=' + screen.width + ', height=' + screen.height;
	var editorWindow = window.open('http://www.nxpublisher.nl/editor/#/login?key=d002226c-108c-46cb-b839-d562d8fd3bb1', 'Editor', args);
	editorWindow.focus();
}
