// JavaScript Document

function showRedirectOpt(str, num) {
    var ans = confirm(str);
    var link = new Array();

    //all the links you want numbered go here:
    link[0] = "https://eventsonline08.amlinkevents.com/ei5/cm.esp?id=5035&pageid=PUBAREA";

    //this is the part that actually redirects depending on whether the user clicked Yes or No in the prompt.
    new_url = link[num];
    if(ans) {
		alert('PLEASE NOTE - The Australasian College of Dermatologists does not provide referrals to dermatologists or consultation to patients.  Please see your local GP for a referral to a dermatologist or to discuss your treatment options.')
		
        window.location = new_url;
    } else {
        //alert('Did not redirect.');
    }
}
