/*
bravura.js
Copyright Pacific Swell Networks, Inc. 2007-2008
Date Created: 12/6/2007
Author: Taylor Boyko

Description:  Pop-up window javascript for use with the Bravura web phone interface.
*/

function popupWindow(windowName){

	self.name="main";

	leftVal = (screen.width - 450) / 2;
	topVal = (screen.height - 350) / 2;
		
	specs = 'width=450,height=350,left=' + leftVal + ',top=' + topVal + ',resizable=no,toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,copyhistory=no';
	popup = window.open('',windowName,specs);
	if(popup.focus){ popup.focus(); }
	return true;
}
