function open_window(url, name, width, height) {
	variables = "status=no, scrollbars=no, resizable=0, width="+width+", height="+height;
	var newWindow = window.open(url,name,variables);
	if (window.focus) newWindow.focus();
	newWindow.moveTo(100,100);
}
