<!-- 
var remote = null;
function pup(u,n,w,h) {
	remote = window.open(u, n, 'width=' + w + ',height=' + h +',resizable=yes,scrollbars=yes');
	if (remote != null) {
		if (remote.opener == null) {
			remote.opener = self;
			window.name = 'pup';
			remote.location.href = u;
		}
	}
	remote.focus();
}
// -->