window.onload = initAll;

function initAll() {
	
		if (document.getElementById) {
		document.getElementById("jason").onclick = newWindow;
		}
		
}

function newWindow() {
	
		var jasonWindow = window.open(this.href,"Jason's Audition","menubar=no,width=650,height=560");
	jasonWindow.focus();
	return false;
}