	function writeReminders(){
		for (x=0;x<JSONObjReminders.reminders.length;x++){
			document.writeln('<div align="left" style="position: relative; width: 289px"><div style="position: relative; display: inline-block; *float: left; width: 5px; height: 10px; background: url(images/guestGuide/RK_guestGuide_bullet_5x10.png) top no-repeat; *background-image: none; *filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'images/guestGuide/RK_guestGuide_bullet_5x10.png\', sizingMethod=\'none\'); vertical-align: top; margin-top: 2px; padding-left: 21px;  *margin: 3px 5px 0 6px"></div><div align="left" style="position: relative; display: inline-block; color: #042e56; *float: left; width: 255px; font: 10pt calibri,arial; vertical-align: top">');
			if (JSONObjReminders.reminders[x].href!=null){
				document.writeln('<a href="'+JSONObjReminders.reminders[x].href+'" style="color: #076bb7; font-weight: bold; text-decoration: none;">'+JSONObjReminders.reminders[x].text+'</a></div></div>');
			}
			else{
				document.writeln('<b>'+JSONObjReminders.reminders[x].text+'</b></div></div>');
			}
		}
	}