function multibox_include(siteurl, coreurl) {
	//width:95%,height:80%
	window.addEvent('resize', function() {
		multibox_setwindowsize();
	});
	var box = {};
	window.addEvent('domready', function() {
		multibox_setwindowsize();
		box = new MultiBox('mb', {descClassName: 'multiBoxDesc', useOverlay: true, path: coreurl+'/include/multibox/files/', overlayColor: '#ffffff', overlayOpacity: '0.7', showNumbers: false, showControls: false, onOpen: function(){multibox_hideoverflow(); multibox_setcloseingimage()}, onClose: function(){multibox_showoverflow()} });
	});
}
function multibox_setwindowsize() {
	$$('a.mb[window=fitscreen]').each(function(el) {
		var height = document.body.offsetHeight / 100;
		height = Math.round(height * 80);
		var width = document.body.offsetWidth / 100;
		width = Math.round(width * 90);
		el.setAttribute('rel', 'width:'+width+',height:'+height);
	});
}
function multibox_hideoverflow() {
	document.getElementById('html').style.overflow = "hidden";
	document.getElementById('OverlayContainer').style.display = 'block';
}
function multibox_showoverflow() {
	document.getElementById('html').style.overflow = "auto";
	document.getElementById('OverlayContainer').style.display = 'none';
}
function multibox_setcloseingimage() {
	var lang = $('html').getAttribute('lang');
	$$('.MultiBoxClose').setStyle('background-image', 'url(./image/web/multibox/close_'+lang+'.gif)');
}
function multibox_windowevent_link() {
	$(window).addEvent('onunload', function(event) {
		var r = confirm("www.gullimex.com?");
		if(r==true) {
  			window.location.reload();
		}
	});
}