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

function imageIden(captionData, titleData, modelData, makeupData, stylingData, otherData) {
$('#bildetekst h3').html(titleData);
$('#bildetekst #caption').html(captionData);
$('#bildetekst #model').html(modelData);
$('#bildetekst #makeup').html(makeupData);
$('#bildetekst #styling').html(stylingData);
$('#bildetekst #other').html(otherData);
}