var newwindow;
function eventPopup(url)
{
	newwindow=window.open(url,'name','height=600,width=600,scrollbars=yes,resizable=no,toolbar=no,status=no,location=no,menubar=yes,left=1,top=1');
	if (window.focus) {newwindow.focus()}
}

function seasonVideoPopup(url)
{
	newwindow=window.open(url,'name','height=355,width=395,scrollbars=no,resizable=no,toolbar=no,status=no,location=no,menubar=no,left=1,top=1');
	if (window.focus) {newwindow.focus()}
}

function legendPopup(url)
{
	newwindow=window.open(url,'name','height=700,width=700,scrollbars=yes,resizable=yes,toolbar=no,status=no,location=no,menubar=no,left=1,top=1');
	if (window.focus) {newwindow.focus()}
}

function itineraryPopup(url)
{
	newwindow=window.open(url,'name','height=650,width=800,scrollbars=yes,resizable=yes,toolbar=no,status=no,location=no,menubar=no,left=1,top=1');
	if (window.focus) {newwindow.focus()}
}


function Popup(url, windowname, w, h, x, y) {
	newwindow = window.open(url, windowname, "resizable=no,toolbar=no,scrollbars=yes,menubar=no,status=no,directories=no,width=" + w + ",height=" + h + ",left=" + x + ",top=" + y + "");
	newwindow.focus();
}

