function popup(URL,width,height) {
	day = new Date();
	id = day.getTime();

	//displays the pop-up in the center of the screen
	popupLeft=Math.abs(screen.width-width)/2;
	popupTop=Math.abs(screen.height-height)/2;

	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=1,statusbar=1,menubar=0,resizable=1,width="+width+",height="+height+",left = "+popupLeft+",top = "+popupTop+"');");
}

function passRecovery(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=280,height=220,left = 270,top = 180');");
}

function sendOffer(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=430,height=410,left = 270,top = 180');");
}

function mouseOverMenu(menuId) {
	document.getElementById(menuId).style.background='url(\'_i/site/menu_mouse_over.jpg\')';
	document.getElementById('div'+menuId).style.color='#FF8C00';
}

function mouseOutMenu(menuId) {
	document.getElementById(menuId).style.background='url(\'_i/site/6.jpg\')';
	document.getElementById('div'+menuId).style.color='#ffffff';
}

function showOffers(offerId) {
	if (document.getElementById(offerId).style.display=='none') {
		document.getElementById(offerId).style.display='block';
	}
	else {
		document.getElementById(offerId).style.display='none';
	}
}
