
function openWindow(url,winName,width,height,toolbars,statusBar,links,menuBar,scrollbars,resizeable,xPos,yPos)
{
	var positioning = (document.layers) ? (',screenX='+xPos+',screenY='+yPos) : (',left='+xPos+',top='+yPos);

	toolbars = (toolbars) ? 'yes' : 'no';
	statusBar = (statusBar) ? 'yes' : 'no';
	links = (links) ? 'yes' : 'no';
	menuBar = (menuBar) ? 'yes' : 'no';
	scrollbars = (scrollbars) ? 'yes' : 'no';
	resizeable = (resizeable) ? 'yes' : 'no';

	var theWindow = window.open(url, winName, 'scrollbars='+scrollbars+',width='+width+',height='+height+',toolbar='+toolbars+',status='+statusBar+',menubar='+menuBar+',links='+links+',resizable='+resizeable+positioning);

	theWindow.focus();
}

