function setPage(newPage) {
	//check if Flash object exists
	if (window.document.mymovie) {
		//set page variable in _root timeline of Flash movie
		window.document.mymovie.SetVariable("newPage", newPage);
	}
}
function flyerPopup(url,h,w) {
	window.open(url,'popup','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width='+w+',height='+h+',top=50,left=50');
}