function openwin(path,scrollbars,width,height,winTitle,botClose,botClose_on,botMinimize,botMinimize_on,topBorder,botBorder,rightBorder,leftBorder,borderColor,borderColorOn,backGroundImage,titleImage,titleFontFamily,fontStyle,titleFontSize,titleFontColor,titleFontWeight,titleAlign,centered,xPos,yPos) {
	w = leftBorder+width+rightBorder;
	h = topBorder+height+botBorder;
	if(centered=="yes"){
		myXpos=(screen.width-w)/5.5;myYpos=(screen.height-h)/2.5;
	} else {
		myXpos=xPos;myYpos=yPos;
	}
	win = window.open(path, "", "left="+myXpos+",top="+myYpos+",width="+w+",height="+h+",toolbar=0,scrollbars="+scrollbars+",resizable=0");
	win.focus();
}