/* basic javascript functions */
function flash_setMapOrigin(newlat, newlon, unit)
{
	thisMovie("mapabc").setMapOrigin(newlat, newlon, unit);
}

function flash_setMapLevel(level)
{
	thisMovie("mapabc").setMapLevel(level);
}

function thisMovie(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {
        return window[movieName]
    }
    else {
        return document[movieName]
    }
}

function pep_show(index){
	id = photos[index]['itemid'];
	$('#photo_subject').html(photos[index]['subject']);
	$('#big_photo').attr("href", detail_url + id + '&type=' + photos[index]['atype']);
	$('#big_div').css("background-image", 'url('+photos[index]['big_img']+')');
}
