<!--
function popUp(URL, width, height) {

		var left = (screen.width - width) / 2;
		var top = (screen.height - height) / 2;

		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+width+',height='+height+', left = '+left+',top = '+top+'');");
		
		}

function popUpResize(URL, width, height) {

		var left = (screen.width - width) / 2;
		var top = (screen.height - height) / 2;

		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width='+width+',height='+height+', left = '+left+',top = '+top+'');");
		
}

function confirmation(name, get) {
		//alert ($get)
		var answer = confirm("Are you sure you want to delete: "+name)
		 if (answer){	 
			 window.location = get;
		 }
		
}

function worldWide(){
	ww=document.getElementById("ww").checked
	if (ww){
		ww=document.getElementById("countryCode").disabled=true
		ww=document.getElementById("wm").disabled=true

	}else{
		ww=document.getElementById("countryCode").disabled=false
		ww=document.getElementById("wm").disabled=false
	}
					
}


// -->