If you're looking to work with the unix epoch time, you have a few options
UTC()
Returns the number of
milliseconds in a date string since
midnight of January 1, 1970,
according to universal time
setTime()
Sets a date and time by
adding or subtracting a specified
number of milliseconds to/from
midnight January 1, 1970
parse()
Parses a date string and
returns the number of milliseconds
since midnight of January 1, 1970
getTime()
Returns the number of
milliseconds since midnight Jan 1,
1970
valueOf()
returns a primitive of the value, I'd stay away from it and work with the above options.
source: http://www.w3schools.com/jsref/jsref_obj_date.asp.
edit: also, your asking for Feb 1, 1970
use this, it's dangerous to go alone:
var d=new Date(1970, 0, 1);
document.write(d.getTime());
or
var d= Date.parse("Jan 1, 1970"); //Note, we don't use NEW keyword.
document.write(d);
Remember, epcoh is Wed Dec 31 1969 19:00:00 GMT-0500. If you use .getTime()
you'll see UTC time Thu, 01 Jan 1970 00:00:00 GMT +0000.