<!-- 
// This is the function that will open the
// new window when the mouse is moved over the link


function open_new_window() 
{
new_window = open("","hoverwindow","width=300,height=250,left=330,top=350");

// open new document 
new_window.document.open();

// Text of the new document
// Replace your " with ' or \" or your document.write statements will fail
new_window.document.write("<title>Minority Business Enterprise</title>");
new_window.document.write("<body bgcolor=\"#FFFFFF\">");
new_window.document.write("This business has a majority by one or more members who are minorities as defined by Federal Law, and also agree to make available an inspection to our clients any such material which may be required to substantiate the percentage of minority ownership and control of this firm.");
new_window.document.write("<br>");
new_window.document.write("HPG understands designation, as a Minority Business Enterprise does not guarantee any present or future contracts. Hampton Pryor Group will participate in your procurement system and bid competitively for business.");
new_window.document.write("<br>");
new_window.document.write("</body>");

// close the document
new_window.document.close(); 
}

// This is the function that will close the
// new window when the mouse is moved off the link
function close_window() 
{
new_window.close();
}

// -->