function MM_openBrWindow (theURL, winName, features)
{
	//v2.0
	window.open (theURL, winName, features);
}
//Used by flash to open windows
function openBrWindow (s)
{
	var a = s.split ("||");
	window.open (a[0], a[1], a[2]);
}