﻿function moveoverIdSrc(fromId,newSrc) {
    document.getElementById(fromId).src = newSrc;
}

function moveoverIdSrcSohle(fromId, newSrc) {
    //http://paulgreen-shop.de/
    document.getElementById(fromId).src =  "../shop/schuhe/img_artikel_sohlen/" + newSrc;
}

function moveoverIdSrcSchuh(fromId, newSrc) {
    // http://paulgreen-shop.de/
    document.getElementById(fromId).src = "../shop/schuhe/img_artikel_big/" + newSrc;
}
function moveoverIdSrcDetail(fromId, newSrc) {
    
    // http://paulgreen-shop.de/
    document.getElementById(fromId).src = "../shop/schuhe/img_artikel_detail/" + newSrc;
}


function moveoverIdUrl(fromId, newUrl) {
    document.getElementById(fromId).ImageUrl = newUrl ;
}

function moveoverIdId(from, into) {
    document.getElementById(from).src = document.getElementById(into).src;
}

