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';
 	//var PictWindow = window.open('fanfly_blank.html',PicName,'width=' + WindowWidth + ',height=' + WindowHeight + ',left=' + LeftMargin + ',top=' + TopMargin + ',status,resizeable,menubar');
	
	var PictWindow = window.open('fanfly_blank.html','','width=' + WindowWidth + ',height=' + WindowHeight + ',left=' + LeftMargin + ',top=' + TopMargin + ',status,resizeable,menubar');
	
		//var PictWindow = window.open('',PicName,strFeatures);
	PictWindow.document.write("<html><body>");
	PictWindow.document.write("<img src='" + FileName + "' width='" + PicWidth + "' height='" + PicHeight + "' border='0'>");
	PictWindow.document.write("</body></html>");
		//PictWindow.document.write("test");
	PictWindow.focus();
 	return false;
}
function PaintColor(element,color){
	element.style.color = color;	
}

