﻿var IE = (navigator.userAgent.indexOf('MSIE') != -1);

function no_scrollbar()
{
	if(!IE)
		return;	

	if(document.style.overflow != 'auto')
		document.style.overflow = 'auto';
	document.body.style.width = document.clientWidth + 'px';
}
function init()
{
	no_scrollbar();

	if(IE)
		onresize = ie_tweaks;
}

function forceClick(e, elemId) {
    var elem = document.getElementById(elemId);
	var intKey = window.Event ? e.which : e.KeyCode;
        
	if(intKey == 13) {
		e.returnValue = false;
	if(elem == null)
		alert('Button not found!');
	else 
		elem.click();
	}
}