function wordCount(wC,limit){
wCArray=wC.split(" ");
if (wCArray.length>limit)
{alert("You have used too many words,\nremember the limit is "+limit)}
}
