// JavaScript Document

function openNewWindow(fileName,windowName,theWidth,theHeight) {

	winAll = window.open(fileName,windowName,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,screenX="+((screen.width/2)-(theWidth/2))+",screenY="+((screen.height/2)-(theHeight/2))+",top="+((screen.width/2)-(theWidth/2))+",left="+((screen.height/2)-(theHeight/2))+",width="+theWidth+",height="+theHeight)

}