function openWindow(URL, name, width, height) {
	var variables = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height + ",left=10,top=10"; 
	newWindow = window.open(URL, name, variables);
	return false;
}
