// JavaScript Document<SCRIPT LANGUAGE="JavaScript">
<!-- Original:  Dion (biab@iinet.net.au) -->
<!-- Web Site:  http://www.iinet.net.au/~biab -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var item = new Array();

/* Here is where all the magic happens.  
    Just enter as many additional pages that
    that you want to search, then fill in the
    additional listings for each page.
*/


// "Page Name","path","Page Title","Many,Key,Words","Descriptive Comments"

c=0; item[c]=new Array("","http://www.school-of-business.co.uk/index.html","Home","NHC School of Business,Higher education,continue their Higher education,Master Degree,Master,phd,distance education","education.","NHC School of Business is one of the most diverse business schools in the UK and a part of Notting Hill College. NHC School of Business is an affiliate of Eton University Which promotes its innovative higher education degrees through its campuses as well as online. We offer leading-edge executive education in HR, Management, Marketing, Sales, leadership in addition to a wide range of up-to-date Business Skills courses.");

c++; item[c]=new Array("","http://www.school-of-business.co.uk/About Us.html","About us","about School of Business,advances,who ","Education at NHC School of Business has a global respect and a well-deserved reputation for its quality and high standards");


c++; item[c]=new Array("","http://www.school-of-business.co.uk/Programmes.html","Programmes","Business Skills,Professional Certificates,Courses,Professional Diplomas,HIGHER EDUCATION,EXECUTIVE EDUCATION,Post Graduate Diplomas,MBA","Our wide range of flexible learning programmes are tailored to accelerate your career at any level.");

c++; item[c]=new Array("","http://www.school-of-business.co.uk/Business Skills Courses.html","Business Skills Courses","Business Skills Courses List ,Business Skills,Courses,Short Courses",
"Business skills courses at NHC School of Business can enhance your interactions, job performance and career prospects. It implies that critical thinking, interpersonal communication and innovation. If fact, what we keep finding is that success in the workplace stems from having these abilities, regardless of what kind of work a person does.");


c++; item[c]=new Array("","http://www.school-of-business.co.uk/Professional Diplomas.html","Professional Diplomas","Professional Diplomas ,Business Skills,Courses,Diplomas",
"As customers become more sophisticated and demanding and as competition and technology are changing ever more rapidly, we as executives and leaders cannot stand still or the economic and competitive currents will take us backwards. NHC School of Business professional diplomas are an opportunity for you to gain and improve a particular skill set to help assure your continued development as an effective executive and leader. ");


c++; item[c]=new Array("","http://www.school-of-business.co.uk/Professional Certificates.html","Professional Certificates","Professional Certificates ,Business Skills,Courses,Certificates",
"If you're looking for an efficient way to move your career forward or launch a new career, consider a professional certificate programme at NHC School of Business. ");


c++; item[c]=new Array("","http://www.school-of-business.co.uk/PG Diplomas.html","Post Graduate Diplomas","Post Graduate Diplomas,Business Skills,Courses,Diplomas",
"There are many reasons why a postgraduate diploma may benefit you in today's highly competitive world and with the invasion of talents across the globe to stand out and leave an impact. ");

c++; item[c]=new Array("","http://www.school-of-business.co.uk/MBA.html","Master's of Business Administration (MBA)","Master's of Business Administration ,MBA,Courses,Master Degree",
"NHC School of Business as an affiliate to Eton University – College of Business and Management offers master programmes to equip you with the necessary theoretical and practical knowledge to benefit you tremendously in managerial and administrative jobs. Our joint master's programme is in Business Administration (MBA). ");

c++; item[c]=new Array("","http://www.school-of-business.co.uk/Contacts.html","Contacts","Contacts ,Address,tel,fax",
"Many thanks for your interest in NHC School of Business programmes! We are more than happy to answer your questions. We encourage you to browse our website for answers readily available online.  ");



// "Page: Search Results"
page="<html><head><title>Search Results</title></head><body bgcolor='white'><center><table style='font-family: Tahoma, Geneva, sans-serif;font-size: 11px;font-weight: normal;color: #333;text-decoration: none;' border=0 cellspacing=10 width=80%><tr  style='font-family: Tahoma, Geneva, sans-serif;	font-size: 15px;font-weight: bold;color: #FFF;text-decoration: none;background-image: url(http://www.school-of-business.co.uk/img/pg_panner_g.png);	background-repeat: repeat-x;'><td style='width:margin-left:5px;'>&nbsp;&nbsp;NHC School of Business Search Results</td></tr>";


function search(frm) {
win = window.open("","","scrollbars");
win.document.write(page);
txt = frm.srchval.value.split(" ");
fnd = new Array(); total=0;
for (i = 0; i < item.length; i++) {
fnd[i] = 0; order = new Array(0, 4, 2, 3);
for (j = 0; j < order.length; j++)
for (k = 0; k < txt.length; k++)
if (item[i][order[j]].toLowerCase().indexOf(txt[k]) > -1 && txt[k] != "")
fnd[i] += (j+1);
}
for (i = 0; i < fnd.length; i++) {
n = 0; w = -1;
for (j = 0;j < fnd.length; j++)
if (fnd[j] > n) { n = fnd[j]; w = j; };
if (w > -1) total += show(w, win, n);
fnd[w] = 0;
}
win.document.write("</table><br>Total found: "+total+"<br></body></html>");
win.document.close();
}
function show(which,wind,num) {
link = item[which][1] + item[which][0]; 
line = "<tr><td style='border-bottom-width: 2px;border-bottom-style: double;border-bottom-color: #333;'><a href='"+link+"'>"+item[which][2]+"</a> Score: "+num+"<br>";
line += item[which][4] + "<br>"+link+"<br><br></td></tr>";
wind.document.write(line);
return 1;
}
//  End -->

