

var openedWindow;
var editorWindow;

function openWindow(url)
{
    openedWindow = window.open(url, '', 'height=200, width=200, resizable=no, scrollbars=yes, toolbar=no, location=no, directories=no, status=no, menubar=no, copyhistory=no');
}

function resizeWindow(x, w)
{
    if(self.resizeTo) {
	self.resizeTo(x, w);
    }
}

function openEditor(url, width, height)
{
    editorWindow = window.open(url, '', 'height=' + height + ', width=' + width + ', resizable=no, scrollbars=yes, toolbar=no, location=no, directories=no, status=no, menubar=no, copyhistory=no');
}
