function swapImage(oldImg, newImg)
{
	oldImg.src = newImg.src;
}

function hiliteCell(obj, cSpecF, cSpecB)
{
	obj.style.color = cSpecF;
	obj.style.background = cSpecB;
}

function popPage(url,w,h)
{
	var poppedWindow = window.open(url,'popped','width=' + w + ',height=' + h + ',scrollbars,resizable');
	poppedWindow.moveTo(screen.width/2-w/2, screen.height/2-h/2);
	poppedWindow.focus();
}

function showLayer(obj)
{
	obj.style.visibility = 'visible';
}

function hideLayer(obj)
{
	obj.style.visibility = 'hidden';
}

function checkSubject(someSelectBox)
{
	if (someSelectBox.options[someSelectBox.selectedIndex].text == 'Accommodation Inquiry...')
	{
		window.location='accommodation.asp';
	}
}