// JavaScript Document
function newsletter_submit(){
	var url = $('#url').val();
	var email = $('#bb_newsletter_email').val();
	var name = $('#bb_newsletter_name').val();
	if(email=="" || email=='Your E-Mail'){
		$('#bb_newsletter_email').addClass('error_red');
	}else{
		$('#bb_newsletter_email').removeClass('error_red');
	}
	if(name=="" || name=='Your Name'){
		$('#bb_newsletter_name').addClass('error_red');
	}else{
		$('#bb_newsletter_name').removeClass('error_red');
	}
	// alert('url '+url );
	if(email=="" || email=='Your E-Mail' || name=="" || name=='Your Name'){
		return false;
	}else{
		$.get(url, { email: email, name: name },function(data) {
			$('.result').html(data);
		});
	}
	

}

function stoererklick(){
	//$("#newsletterformlink").click();
	//tb_show("Seite", "http://www.google.de/?KeepThis=true&amp;TB_iframe=true&amp;height=480&amp;width=600", "");
	tb_show(" ", "http://www.tarja-whatliesbeneath.com/newsletter_form.php/?KeepThis=true&amp;TB_iframe=true&amp;height=320&amp;width=480", "");
}

$(document).ready(function(){
	$('#bb_newsletter_name').blur(function(){
		var name = $('#bb_newsletter_name').val();
		if(name==""){
			$('#bb_newsletter_name').val('Your Name');
		}
	});
	$('#bb_newsletter_email').blur(function(){
		var email = $('#bb_newsletter_email').val();
		if(email==""){
			$('#bb_newsletter_email').val('Your E-Mail');
		}
	});	
						   
});

if (parent.location.href == self.location.href) {
    if (window.location.href.replace)
        window.location.replace('/index.php?location='+self.location.href);
    else
        // causes problems with back button, but works
        window.location.href = '/index.php?location='+self.location.href;
}
