// JavaScript Document
function popUpNav(URL, width, height) {
	newWindow = window.open(URL, Math.round(Math.random()*100000000), 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + width + ',height=' + height + ',left=0,top=0');
	newWindow.focus();
	return false;
}