/* A DIGITOLL Kft. honlapja */
/* Készítette a DIGITOLL Kft. */
/* boxhandle.js */

function boxMouseOver(id, type) {
	document.getElementById(id).style.backgroundImage='url(pic/box_' + type + '_on.png)';
	document.getElementById(id).style.backgroundRepeat='repeat-x';
	document.getElementById(id+'Box').className='boxcontent style3';
}
function boxMouseOut(id, type) {
	document.getElementById(id).style.backgroundImage='url(pic/box_' + type + '.png)';
	document.getElementById(id).style.backgroundRepeat='repeat-x';
	document.getElementById(id+'Box').className='boxcontent style7';
}
function boxMouseDown(linkhref, id, otherparams) {
	if (linkhref != '' && linkhref != 'undefined' && linkhref != undefined && linkhref != false) {
		var locationlink = linkhref + '.php?m=' + id;
		if (otherparams != '' && otherparams != 'undefined' && otherparams != undefined && otherparams != false) {
			locationlink = locationlink + '&id=' + otherparams;
		}
		window.location = locationlink;
	}
}
