// explain.js

// G-XI Pte Ltd
// Copyright @ 2000
// All Rights Reserved

function explain() {

	new_window = window.open('','','top=20,left=20,width=380,height=280');

	if (!new_window.opener) new_window.opener = self;

	with (new_window.document) {
		open();
		write('<html>');
		write('<head><title>Search criteria</title>');
		write('<style type="text/css">');
		write('A:link    {color: blue}');
		write('A:visited {color: brown}');
		write('A:hover   {color: red}');
		write('</style></head>');

		write('<body>');

write('<p><font face="Verdana" size="2">The acceptable search criteria are :</font></p>');
write('<p><font face="Verdana" size="1">(1) Specific device eg "PLCC12345" OR</font><br>');
write('<font face="Verdana" size="1">(2) Wildcard search on device eg "PLCC" OR</font><br>');
write('<font face="Verdana" size="1">(3) Any combination of Ao, Bo and/or Ko.</font></p>');

write('<p><font face="Verdana" size="1">The combination of Ao, Bo and/or Ko may be entered as a single value, eg "3", OR as a range of values eg "3" to "5".</font></p>');

write('<p><font face="Verdana" size="2">The search results displayed will be sorted by :</font></p>');
write('<p><font face="Verdana" size="1">- Device, if the criteria is based on (1) or (2) OR</font><br>');
write('<font face="Verdana" size="1">- Ao, Bo, followed by Ko, if the criteria is based on (3).</font></p>');

write('<p><font face="Verdana" size="2"><a href="javascript:window.close()">Close window</a></font></p>');

		close();
	}
}

