function popup (url,name) {
	window.open(url,name,"width=700,height=700,resizable=yes,scrollbars=yes");
}
function popupSized (url,name,width,height) {
	window.open(url,name,"width=" + width + ",height=" + height + ",resizable=yes,scrollbars=yes");
}
