$(document).ready(function() {
    $('#showSendPhoto').click(function(event) {
        $('#sendYourPhoto').fadeIn();
        event.preventDefault();
    });
    
    $('#sendYourPhotoClose').click(function(event) {
        $(this).parent().fadeOut('fast');
        event.preventDefault();
    });
});

var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=700,width=850,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=yes,status=yes');
	if (window.focus) {newwindow.focus()}
}
