var baseURL = 'http://darkcopy.com/';

function exitFullScreen() {
	updateOpener();
	window.close();
}

function updateOpener() {
	if (window.opener.location != baseURL) window.opener.location = baseURL;
	window.opener.document.getElementById('textedit').value = document.getElementById('textedit').value;
}

function fullScreen() {
	fullscreen = window.open('fullscreen.html','fullscreenedit','menubar=no,scrollbars=no,toolbar=no,screenX=0,screenY=0,width='+screen.width+',height='+screen.height);
	if (window.focus) {fullscreen.focus()}
}

function saveTextFile() {
	updateOpener();
	window.opener.document.forms.darkcopy.submit();
}
