//-----------------------------------------------------
// Purpose    Opens the downloadable calculator
//	      in another window.	      
// Parameters none
// Returns    nothing
// History    PA 05-Dec-2002 created
//-----------------------------------------------------
function getDownloadable(strPath)
{
	alert("To download this calculator, use the File menu option 'Save As...' after the window opens");
	open(strPath, "_blank");
}