//Function will create a new browser window with the 
//features passed to function.

function NewWindow(NewURL, NewName, NewFeatures){
	//Create a new window with passed parameters.
	NewWin = window.open(NewURL,NewName,NewFeatures);
}

