// JavaScript Document

$(document).ready(function() {
	$("a[rel='external']").click(function() {
		var popup = makePopup(this.href, 1000, 650, 'both');
		return false;
	});
})

function makePopup(url, width, height, overflow) {
	if (overflow == '' || !/^(scroll|resize|both)$/.test(overflow)) {
		overflow = 'both';
	}
	
	var win = window.open(
		url, 
		'', 
		'width=' + width + 
		',height=' + height +
		',scrollbars=' + (/^(scroll|both)$/.test(overflow) ? 'yes' : 'no') + 
		',resizable=' + (/^(resize|both)$/.test(overflow) ? 'yes' : 'no') + 
		',status=yes,toolbar=yes,menubar=yes,location=yes'
	);
	
	return win;
}
