/*################################
##################################

  Phuture Trax Press & Events PR


	dom script & javascript functions

	created: 16/07/2005
	last revision: 16/07/2005

##################################
################################*/

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

function openCenterWin(mypage, myname, w, h, scroll, resize)	{
/* 	opens a window with customised features
	in the center of the window and gives
	it ?focus?		*/
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable='+resize
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}