function PopupURL(url, title, width, height) {

	pop = window.open(url, title ,"top=0,left=0,width=" + width + ",height=" + height + ",toolbar=no,scrollbars=no,resizable=yes");
	pop.focus();
}