<!--

$(document).ready(function(){

	/*
	Any links with rel="external" attribute will open in new window.
	*/
	$('a[rel="external"]').attr('target', '_blank');
	
});

/*
=========
BASIC FUNCTIONS
=========
*/
var newWindow = null;
function popup(theURL, winName, features) { 
	closePopup(winName);
	newWindow=window.open(theURL,winName,features);
	newWindow.focus();
}
function closePopup(winName) {
	if (newWindow && newWindow.open && !newWindow.closed) newWindow.close();
}

-->