function OpenWindow(FileName,PicName,PicWidth,PicHeight){
  	var WindowWidth=PicWidth+15; 
  	var WindowHeight=PicHeight+50;
	var LeftMargin = screen.Width/2 - WindowWidth/2;
	var TopMargin = screen.Height/2 - WindowHeight/2;
 	var strFeatures="width=" + WindowWidth + ",height=" + WindowHeight + ",left=" + LeftMargin + ",top=" + TopMargin + ",status,resizeable,menubar";
 	PicWindow=window.open('',PicName,strFeatures);
	PicWindow.document.write("<img src='" + FileName + "' width='" + PicWidth + "' height='" + PicHeight + "' border='0'>");
	PicWindow.focus();
 	return false;
}
function PaintColor(element,color){
	element.style.color = color;	
}
