function verify(name, url, target) {
	//if (confirm('The legality and legal age of playing online poker differ from jurisdiction to jurisdiction. All poker advertisements are limited to users who are of legal age and/or to jurisdictions where online poker is legal. If online poker is illegal for your age and/or jurisdiction, please click cancel.')) {
		document.master.node.value = url;
		document.master.target = target;
		document.master.action = '/PocketFives/P5_Redirect.aspx?id=' + name;
		document.master.submit();
	//}
}

function redirect(name, url, target) {
	document.master.node.value = url;
	document.master.target = target;
	document.master.action = '/PocketFives/P5_Redirect.aspx?id=' + name;
	document.master.submit();
}

function playPodcast(filename, action) {
    // If there is already a podcast being played... just changes the URL
    if ((window.parent != null) && (window.parent != window) && (window.parent.frames["podcastFrame"] != null))
    {
        window.parent.frames["podcastFrame"].location = "/pocketfives/p5_siteandpodcast?reference=" + filename;
    }
    else
    {
	    document.master.lastnode.value = window.location;
	    document.master.reference.value = filename;
	    document.master.action = action;
	    document.master.submit();
	}
}