use
var timer = setTimeout(function(){
countDown(secs)
},1000);
or
var timer = setTimeout('countDown(' + secs + ')',1000);
In your case the problem was your were using string concatenation with a variable without +
sign (my second example) with will cause a syntactical error