window.onload = function(e) {
	externalLinks();
	}

function confirm_delete_call()	{
	
	if (document.getElementById('was_art_call').value == 'true' && document.getElementById('call_no').checked)	{
		return confirm("Your have checked the no button for a call for artists but you have an existing artist call in the system.\n\nClick yes to delete this artist call or cancel so you can change the artist call selection to yes");
		}
	
	}

function check_refine_boxes()	 {
	
	if (document.getElementById('r_region').selectedIndex != 0 && document.getElementById('r_area').selectedIndex != 0)	{
		alert("Please select either a region or an area, trying to refine your search using both will return no results");
		return false;
		}
	
	}

function redirect_search(pageName)	{
	domains = new Array();
	domains['1'] = 'artdacks.org';
	domains['2'] = 'fingerlakesartists.org';
	domains['3'] = 'northcountryartists.org';
	domains['4'] = 'capitalregionartists.org';
	domains['5'] = 'catskill-hudsonartists.org';
	domains['6'] = 'leatherstockingartists.org';
	domains['7'] = 'westernnyartists.org';

	if (document.getElementById('r_region').selectedIndex != 0)	{
		window.location.href = "http://" + domains[document.getElementById('r_region')[document.getElementById('r_region').selectedIndex].value] + "/index.php?pageName=" + pageName;
		}
	else	{
		
		}

	}

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&	anchor.getAttribute("class") == "out") {
		anchor.target = "_blank";
		}
	}
}
