function pop( url ) {
	var h = screen.height - 150;
	// h = 400;
	var w = 650;
	var leftMargin = 40;
	var topMargin = 25;
	detailsPopup = window.open( url,"details","width=" + w + ",height=" + h +",left=" + leftMargin + ",top=" + topMargin + ",scrollbars=yes,toolbar=no,status=yes,directories=no,location=no,resizable=yes,menubar=no");
	detailsPopup.focus();
	return false;
}

function initPopups() {
	var x = document.getElementsByTagName( 'a' );
	for ( var i=0; i < x.length; i++ ) {
		if ( x[i].getAttribute( 'type' ) == 'popup' ) {
			x[i].onclick = function () {
				return pop( this.href )
			}
			// x[i].title += ' (Popup)';
		}
	}
}

