
function get_screen_resolution(form) {

	form.screen_height.value = screen.height;
	form.screen_width.value  = screen.width;
	return true;
}

