function openPop(url, width, height, scroll) {
	var isMSIE = (navigator.appName == "Microsoft Internet Explorer");
	var x = parseInt(screen.width / 2.0) - (width / 2.0);
	var y = parseInt(screen.height / 2.0) - (height / 2.0);
	scroll = "yes";
	if (isMSIE) {
		// Pesky MSIE + XP SP2
		width += 35;
		height += 55;
	}

	var win = window.open(url, "ImageManager", "top=" + y + ",left=" + x + ",scrollbars="+ scroll +",modal=yes,width=" + width + ",height=" + height + ",resizable=no");
	win.focus();
}

function sel(){
	var val = document.getElementById('tip').value;
	if(val=="Persoana fizica"){
		 window.location.href = "http://www.compexit.ro/compexit-club/formular-de-inscriere/?1";
	}else{
		window.location.href = "http://www.compexit.ro/compexit-club/formular-de-inscriere/";
	}
}


$(function() {	
	$('#next').click(function(){
		$('#ext').scrollTo('+=175px', 600, { axis:'x' });
		return false;
	});
	$('#prev').click(function(){
		$('#ext').scrollTo('-=175px', 600, { axis:'x' });
		return false;
	});
	
	$('#next').mouseover(function(){
		$('#ext').scrollTo('+=175px', 600, { axis:'x' });
		return false;
	});
	$('#prev').mouseover(function(){
		$('#ext').scrollTo('-=175px', 600, { axis:'x' });
		return false;
	});
});
