/*** Javascript file for putting Componnet/Template specific things in*/
window.addEvent('domready', function() {
	
	if (document.getElementById('country-langs') != null) {
		$('country-langs').getElements('a').addEvents({
			'click' : function(){
				$('country-langs').getElements('a').removeClass('selected');
				$(this).addClass("selected");
			}
		});
	}
});

function newWindow(url,height,width)
{
	mywindow= window.open (url, "mywindow",
    "location=1,status=1,scrollbars=1,width='"+ width +"',height='"+ height +"'");
	mywindow.moveTo(0,0);
}
