


function openWindow(windowURL,windowName,windowWidth,windowHeight,x,y,scroll) {
	  newWindow = window.open(windowURL,windowName,'width='+windowWidth+',height='+windowHeight+',left='+x+',top='+y+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars='+scroll+',resizable=0');
	  newWindow.focus();
}
