// JScript source code
	<!--
		var document_all = (document.all) ? 1 : 0;
		var window_print = (window.print) ? 1 : 0;
		var mac = (navigator.userAgent.indexOf("Mac") != -1); 

		if (document_all && !window_print && !mac) with (document) {
			writeln('<OBJECT ID="WB" WIDTH="0" HEIGHT="0" CLASSID="clsid:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>');
			writeln('<' + 'SCRIPT LANGUAGE="VBScript">');
			writeln('Sub window_onunload');
			writeln('  On Error Resume Next');
			writeln('  Set WB = nothing');
			writeln('End Sub');
			writeln('Sub vbPrintPage');
			writeln('  OLECMDID_PRINT = 6');
			writeln('  OLECMDEXECOPT_DONTPROMPTUSER = 2');
			writeln('  OLECMDEXECOPT_PROMPTUSER = 1');
			writeln('  On Error Resume Next');
			writeln('  WB.ExecWB OLECMDID_PRINT, OLECMDEXECOPT_DONTPROMPTUSER');
			writeln('End Sub');
			writeln('<' + '/SCRIPT>');
		}

		function Window_Location(Target_Location, Target_Page, Target_Details)	{
			
			Target_Location_lc=Target_Location.toLowerCase();
			//just want to open page in current location
			if (Target_Location_lc=="_self") 
			{
				window.location=Target_Page;
			}
			else 
			{
				//want to get out of frames and put this over all the frames
				if (Target_Location_lc=="_top") 
				{
					top.location=Target_Page;
				}
				else 
				{
					//want to open a new window	
					if (Target_Location_lc=="_blank") 
					{
						window.open(Target_Page, "New_Window", Target_Details);
					}
					else 
					{
						//want to put it in the parent frame location
						if (Target_Location_lc=="_parent") 
						{
							parent.location=Target_Page;
						}
						//want to put it in a specified frame location
						else 
						{
							parent.frames[Target_Location].location=Target_Page;
						};
					}
				}
			}
		}

		function Open_Page(varSelection)	{
			//set initial conditions
			Target_Page="";
			Target_Location="";
			Target_Details="";
			
			//determine selection
			Selected_Reference=varSelection.options[varSelection.selectedIndex].value;
			
			//Look delimeters indicating the page to show, the location of where to show it, and the desired details
			Target_Location_Indicator=Selected_Reference.lastIndexOf("$");
			Target_Details_Indicator=Selected_Reference.lastIndexOf("*");
			
			//Extract page, location, and details...  If they are given...
			if (Target_Location_Indicator!=-1)	
			{
				//extract page & desired location
				Target_Page=Selected_Reference.substring(0,Target_Location_Indicator);
				if (Target_Details_Indicator!=-1)
				{
					Target_Location=Selected_Reference.substring(Target_Location_Indicator+1,Target_Details_Indicator);
					Target_Details=Selected_Reference.substring(Target_Details_Indicator+1,Selected_Reference.length);			
				}
				else
				{
					Target_Location=Selected_Reference.substring(Target_Location_Indicator+1,Selected_Reference.length);
					Target_Details="";
				}
			}
			else 
			{
				//assume current location
				Target_Page=Selected_Reference; 
				Target_Location="_self";
				Target_Details="";
			};
			
			//reset combo box
			varSelection.selectedIndex = 0;

			if (Selected_Reference != "") 
			{
				//open the page
				Window_Location(Target_Location,Target_Page,Target_Details);
			}
		}
			
		function closeWindow() {
			bV = parseInt(navigator.appVersion);
			if (bV >= 4) window.close();
		}
		
		function Validate_Selection(System_Selection, ProductFamily_Selection)	{
			if (System_Selection=="" & ProductFamily_Selection == "")	{
				alert("Please select a system and a product family from the drop down lists before proceeding.");
				event.returnValue=false;
			}
			else if (System_Selection=="")	{
				alert("Please select a system from the drop down list before proceeding.");
				event.returnValue=false;
			}
			else if (ProductFamily_Selection=="")	{
				alert("Please select a product family from the drop down list before proceeding.");
				event.returnValue=false;
			}
		}

		function Submit_System_Selection(System_Selection)	{
			if (System_Selection=="")	{
				alert("Please select a system from the drop down list before proceeding.");
				event.returnValue=false;
			}
			else	{
				document.Selection.submit();
			}
		}




		function Print_Page(frame, arg) {
			if (frame == window) {
				Print_Current();
			} 
			else {
				link = arg; // a global variable 
				Print_Frame(frame);
			}
			return false;
		}

		function Print_Current() {
			if (window_print) { // NS4, IE5
				window.print();
			} 
			else if (document_all && !mac) { // IE4 (Windows)
				vbPrintPage();
			} 
			else { // other browsers
				alert("Sorry, your browser doesn't support this feature. Please click your mouse pointer anywhere in the results and then print from your browser menu.");
			}
		}

		function Print_Frame(frame) {
			if (window_print && document_all) { // IE5
				frame.focus();
				window.print();
				link.focus();
			} 
			else if (window_print) { // NS4
				frame.print();
			} 
			else if (document_all && !mac) { // IE4 (Windows)
				frame.focus();
				setTimeout("vbPrintPage(); link.focus();", 100);
			} 
			else { // other browsers
				alert("Sorry, your browser doesn't support this feature. Please click your mouse pointer anywhere in the results and then print from your browser menu.");
			}
		}
		
		function show_msg(msgtext)	{
			alert(msgtext);
		}
// -->
