
// Reminders function
function ShowReminder(GuideID, Type) {

	if (Type == "SMS") {
		window.open('http://www.lifestylechannel.com.au/reminders/reminder_popup_sms.asp?id=' + GuideID, 'reminder_sms', 'location=no,resizable=no,menubar=no,scrollbars=no,width=400,height=300');
	}
	else {
		window.open('http://www.lifestylechannel.com.au/reminders/reminder_popup_email.asp?id=' + GuideID, 'reminder_email', 'location=no,resizable=no,menubar=no,scrollbars=no,width=400,height=300');
	}

}