// Java Script function to open the url in a new window
function popitup(url) {
	newwindow = window.open(url.getAttribute('href'), 'name', 'location=0,statusbar=0,menubar=1,scrollbars=1,resizable=1,width=600,height=575');
	if (window.focus) {
		newwindow.focus();
		}
	return false;
}