function window_pop_up (location, name, width, height) {
	winPop = window.open(location, name, 'width=' + width + ', height=' + height + ', toolbar=0, resizable=0, status=0, location=0, scrollbars=1');
	winPop.focus();
}