//-----------------------------------------------------------------------------
// Use of this code is governed in accordance with the terms and conditions of
// the agreement executed between the Client and Tag New Media. It is intended
// for use on the Galaxy Rangers site only.
//
// © Copyright Tag New Media 2005. All Rights Reserved. 
//-----------------------------------------------------------------------------

//---------------------------------------------------------------------
// StripWhitespace:
// Remove all whitespace from string, even in the middle of the string
//---------------------------------------------------------------------
function StripWhitespace(anyString) {
 return (anyString.replace(/\s/g,""));
}

//---------------------------------------------------------------------
// OpenTrailerWindow:
// Open a popup window showing the trailer
//---------------------------------------------------------------------
function OpenTrailerWindow() {
	//open centered window to display dvd trailer
	var winX = screen.width;
	var winY = screen.height;
	var WinHrz = 600;
	var WinVrt = 500;
	
	window.open("/trailer/", "trailer", "width=" + WinHrz + ",height=" + WinVrt + ",left=" + (winX-WinHrz)/2 + ",top=" + (winY-WinVrt-56)/2 + ",resizable=0,scrollbars=no");

	return false;
}
