/*
===============================================================
	Gulfstream.com
	-----------------------------------------------------------
	core.js - core functions
	Copyright 2008 Gulfstream Aerospace Corporation
	All Rights Reserved
===============================================================
*/

//======================================================
// *** openNewWindow
// -----------------------------------------------------
// *** opens new window with specified variables
//======================================================
function openNewWindow(URLtoOpen, windowName, windowFeatures) {

	//alert('hey test open new window url = ' + URLtoOpen);
	//var newWindow=window.open(URLtoOpen, windowName, windowFeatures); 
	window.open(URLtoOpen, windowName, windowFeatures); 
}