// JavaScript Document

function mnuDescrip(textID){

if (textID=="default")
	document.getElementById("mnuDescrip").innerHTML="Place the mouse cursor over a navigation button to preview a description";

if (textID=="services")
	document.getElementById("mnuDescrip").innerHTML="Find Website solutions that work for you and grow your business.";

if (textID=="order online")
	document.getElementById("mnuDescrip").innerHTML="Make a secure credit card payment online. It's fast, easy and convenient.";

if (textID=="contact us")
	document.getElementById("mnuDescrip").innerHTML="Chat with us or send an e-mail directly from our Website.";

if (textID=="about us")
	document.getElementById("mnuDescrip").innerHTML="Learn about Techxpets Solutions' crendetials, management, history and more.";

if (textID=="help")
	document.getElementById("mnuDescrip").innerHTML="Get answers to questions about our services or about Websites and Personal Computers in general.";
}

function popUp(file,width,height,top,left){
	popup=window.open(file,"popUp","width=" + width + ",height=" + height + ",resizable=no,scrollbars=yes,top=" + top + ",left=" + left);
	popup.focus();
}

