$(document).ready(function() {
	$("a[rel='pops']").fancybox();
	 $('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
});
var newwindow;
function poplist(url)
{
	newwindow=window.open(url,'name','height=520,width=640,scrollbars=no');
	if (window.focus) {newwindow.focus()}
}
function SendContact() {
	$('span').hide();
	var Name = $('#Name').val();
	var Email = $('#Email').val();
	var err = false;
	if (Name=="") { $('#NameError').show('fast'); err=true; }
	if (Email=="") { $('#EmailError').show('fast'); err=true; }
	if (!err) {
		$.post('ajax/validate.php', { pName: Name, pEmail: Email, pComments: $('#Comments').val() }, function(data) {
			d = data.split('***');
			if (d=="x") { 
				$('#Contact').submit();
				return;
			}
			$.each(d, function() {
				$('#'+this).show('fast');
			});
		});
	}
}