//popup.js
function popup( url, width, height ){
	popwin = window.open( url,'newwin','width=' + width + ',height=' + height +  ',toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes');
	popwin.focus();
}
