﻿function goo(e){
var evObj = document.createEvent('MouseEvents');
evObj.initEvent('click', true, true);
e.dispatchEvent(evObj);
}
