var PopupWindow;

function MakePopupWindow(TitleToDisplay, ImageToDisplay, WindowHeight, WindowWidth)
{
	var Window_Chrome = 'height=' + WindowHeight + ', width=' + WindowWidth + ', top=30, left=30, directories=0, location=0, menubar=0, resizable=1, scrollbars=1, status=0, toolbar=0,';
	var Window_Name = 'PopupWindow';
	var NewURL = '';

	if (!PopupWindow) { ; }
	else if ( PopupWindow.closed) { ; }
	else { PopupWindow.close(); }

	PopupWindow = window.open(NewURL, Window_Name, Window_Chrome);

		
	PopupWindow.document.write('<html>\n');
	PopupWindow.document.write('   <head>\n');
	PopupWindow.document.write('      <title>' + TitleToDisplay + '</title>\n');
	PopupWindow.document.write('      <link href=\"./stylesheets/middle_style.css\" rel=\"stylesheet\" type=\"text/css\">\n');
	PopupWindow.document.write('   </head>\n');
	PopupWindow.document.write('   <body topmargin=\"1\" leftmargin=\"1\" rightmargin=\"1\" bottommargin=\"0\" marginheight=\"1\" marginwidth=\"1\">\n');
	PopupWindow.document.write('      <center><img src=\"' + ImageToDisplay + '\" border=\"1\"></center><BR> \n');
	PopupWindow.document.write('   </body>\n');
	PopupWindow.document.write('</html>\n');
}			

