function popUp(url,width,height) {
	new_pop_up = window.open(url,"new_pop_up","width=" + width + ",height=" + height + ",menubar=no,status=yes,toolbar=no,scrollbars=no,scroll=no,resizable=no,location=no,status=no");  
	new_pop_up.focus();
}	
