﻿function stripDate(strDate) {
	var firstSpace = strDate.indexOf(' ');
	document.write(strDate.substring(0,firstSpace));
}