function openWindow(url, windowName, width, height) {
	var theindow;

	var x = 100;
	var y = 100;

	theWindow = window.open(url,windowName, 'left=' + x + ',top=' + y + ',screenX=' + x + ',screenY=' + y + ',width=' + width + ',height=' + height + ',directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no');
	theWindow.focus();
}

function openScrollableWindow(url, windowName, width, height) {
	var theindow;

	var x = 100;
	var y = 100;

	theWindow = window.open(url,windowName, 'left=' + x + ',top=' + y + ',screenX=' + x + ',screenY=' + y + ',width=' + width + ',height=' + height + ',directories=no,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no');
	theWindow.focus();
}