
/* Open print-friendly article window */
function print(id){
	sUrl = "/travel/action/details-print.php?id=" + id;
	popUp(sUrl,500,500,true);
}	

/* Open save articlee page, which will save the article */
function save(id){
	sUrl = "/travel/action/local_save.php?id=" + id;
	popUp(sUrl,250,520);
}

/* pass in rates seperated by commas */
function nightlyrates(rates){
	sUrl = "/travel/actions/nightlyrates.php?rates=" + rates;
	popUp(sUrl,500,520);
}

/* simply show the user agreement as a popup */
function useragreement(){
	sUrl = "/travel/actions/useragreement.jsp";
	popUp(sUrl,500,520);
}

/* simply show the user agreement as a popup */
function poweredby(){
	sUrl = "/travel/actions/partnerships.jsp";
	popUp(sUrl,460,520,true);
}
