// JavaScript Document

function showRedirectOpt(str, num) {
    var ans = confirm(str);
    var link = new Array();

    //all the links you want numbered go here:
    link[0] = "http://www.dermcoll.asn.au/";
	link[1] = "http://www.acne.org.au/";
	link[2] = "http://www.neutrogena.com/";
	link[3] = "http://www.eulactol.com.au/";
	link[4] = "http://www.trishave.com.au/";
	link[5] = "http://www.dermnetnz.org/";
	link[6] = "http://www.girl.com.au/";
	link[7] = "http://www.fess.com.au/";
	

    //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) {
        window.location = new_url;
    } else {
        //alert('Did not redirect.');
    }
}
