VpmAnyBrowser=function(){
this.engine={gecko:false,microsoft:false}
this.init=function(){
try{
this.engine.gecko=navigator.userAgent.indexOf("Gecko")>-1
}catch(e){}
try{
this.engine.microsoft=navigator.userAgent.indexOf("MSIE")>-1
}catch(e){}
}
this.init()
}