//The detail window.
var DetailPopup;


function WheelPopup(WindowTitle, WindowName, ImageToDisplay, ColorToDisplay, TextToDisplay)
{
	var Window_Chrome = 'height=350, width=350, top=50, left=100, directories=0, location=0, menubar=0, resizable=1, scrollbars=1, status=0, toolbar=0,';
	var Window_Name = 'WheelPopupWindow2' + WindowName;
	var NewURL = '';

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

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

	DetailPopup.document.write('<html>\n');
	DetailPopup.document.write('   <head>\n');
	DetailPopup.document.write('      <title>' + WindowTitle + '</title>\n');
	DetailPopup.document.write('      <link href=\"./stylesheets/sales_style.css\" rel=\"stylesheet\" type=\"text/css\">\n');
	DetailPopup.document.write('   </head>\n');
	DetailPopup.document.write('   <body topmargin=\"3\" leftmargin=\"3\" rightmargin=\"3\" bottommargin=\"0\" marginheight=\"3\" marginwidth=\"3\">\n');
	DetailPopup.document.write('      <span class=\"ItemTitle\">' + WindowTitle + '</span><BR><BR>\n');
	DetailPopup.document.write('      <img src=\"' + ImageToDisplay + '\" alt=\"' + ColorToDisplay + '\" border=\"0\" width=\"250px\" height=\"236px\"><BR><BR> \n');
	DetailPopup.document.write('      <span class=\"ItemHeader\">' + ColorToDisplay + '&nbsp;:&nbsp;' + TextToDisplay + '</span>\n');
	DetailPopup.document.write('   </body>\n');
	DetailPopup.document.write('</html>\n');
}			
	

