// AP - 30th March 2007
// Launch the PayAsYouGo website with the referrer/recruiter code attached

function launchPayAsYouGo()
{
    // AP 06 04 2010 - if the referrer is "REE", re-direct to their PayAsYouGo site
    if (readCookie("referrer") == "REE") {
	    window.open("http://www.talkingcv.com/reed/PayAsYouGo/index.aspx");
    } else {
	    window.open("http://www.talkingcv.com/PayAsYouGo/index.aspx?referer=" + readCookie("referrer"));
	}
}
