function book(city, hotel)
{
	var iWidth = 750;
	var iHeight = 500;
	var iLeft = .10;
	var iTop = .10;
	var winMap = window.open('/order.cfm?city='+city+'&hotel='+hotel,'winOrder','width=' + iWidth + ',height=' + iHeight + ',top=' + (screen.height-iHeight)*iTop + ',left=' + (screen.width-iWidth)*iLeft + ',toolbar=no,menubasr=no,scrollbars=yes,resizable=yes');
}