
function showDestinationPopUp(destinationId)
{
	var width = 640;
	var height = 400;
	var winName="";
	var theURL = '../../destination/single/rhbdetail.aspx?destinationId=' + destinationId;
	theURL = resolveUrl(theURL)
	var options = 'toolbar=no,menubar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no';
		
	options += ',width=' + width + ',height=' + height;
	if (window.screen)
	{
		windowLeft = (screen.availWidth - width)/2;
		windowTop = (screen.availHeight - height)/2;
		options += ',left=' + windowLeft + ',top=' + windowTop;
	}
	newwindow = window.open(theURL,winName,options);
	newwindow.opener = this;
	newwindow.focus();
}