// Flash URL 
var travelnt;
function to_old_win(url)
{
	if (opener == null && travelnt == null)
	{
	travelnt = window.open(url);
	}
   	else if (opener != null)
	{ 
	opener.location.href = url;
    }
	else
	{
	travelnt.location.href = url;
	}
}

// Pop Up Window
function winBRopen(theURL, Name, popW, popH, scroll) { 
	var winleft = (screen.width - popW) / 2;
	var winUp = (screen.height - popH) / 2;
	winProp = 'width='+popW+',height='+popH+',left='+winleft+',top='+winUp+',scrollbars='+scroll+',resizable=no'
	Win = window.open(theURL, Name, winProp)
	if (parseInt(navigator.appVersion) >= 4) { Win.window.focus(); }
}
