function buy2(id){
	var ex = '';
	if(document.getElementById('hmt_track_code')){
		ex = '&track_code=' + document.getElementById('hmt_track_code').value;
	}
 	window.open('http://holdmyticket.com/mini/mini.php?id='+id+''+ex, 'new', 'height=600,width=600,status=yes,scrolling=yes,scrollbars=yes,resizable=yes');
}

function save_psa(){
	
	// validate first
	
	if($('psa_name').value == '' || $('psa_email').value == '' || $('psa_date').value == '' || $('psa_description').value == ''){

		alert('Please fill out all required fields');
		
	}else{
	
		var data = $('form_psa').serialize();
		editWindow.show_loader();
		new Ajax.Request('/form/save_psa',{
			method: 'post',
			parameters: data,
			onSuccess: function(t){
				editWindow.load_data(t.responseText);
			}
		});
	
	}
}

function join_mailing_list(){
	editWindow.load_data($('news_wrap').innerHTML);
	editWindow.setSize(300,250);
}


function scroll_to(){
	window.scrollTo(0,540);
}




