function onhover(obj,MenuId) {
	obj.style.background="#669900";
	$(MenuId).style.display="block";
}
function offhover(obj,MenuId) {
	obj.style.background="#ffffff";
	$(MenuId).style.display="none";
}

function openPopup1(width, height)
{
	window.open('popup.php?popup1','','scrollbars=yes,status=no, toolbar=no, menubar=no, height=' + height + ', width=' + width + ', left=330, top=200 ');
}

function openPopup2(width, height)
{
	window.open('popup.php?popup2','','scrollbars=yes,status=no, toolbar=no, menubar=no, height=' + height + ', width=' + width + ', left=330, top=200 ');
}
