Quote Originally Posted by RobDog888
Did you try "Object"?
You are the man!!!! Thanks
Just rated you!


If anyone else reads this thread here is the working code.....


Code:
function btnEmailJava(subject, tofield, body)
{

var myOlApp = new ActiveXObject("Outlook.Application");
var myOlExp = myOlApp.ActiveExplorer;
			var myItem = myOlApp.CreateItem(Object.olMailItem);
			myItem.Subject = subject;

			myItem.Body = body;
			myItem.To = tofield;
			myOlExp.Activate();
			myItem.Display();
}