/**
2 * @author ehandelsbureauet for stylepaste.com
3 * this script is copyrighted and is not allowed to be used in any way without permission
4 */ 






function switchPopup(){
	
    // popup click mover
	
     if (document.getElementById("Canvas").innerHTML !="") {
        var canvasDiv = (document.getElementById("Canvas"));
        var canvasIMG = canvasDiv.getElementsByTagName("IMG");  
        var canvasOnClick = canvasIMG[0].getAttribute("onclick");
        var canvasSrc = canvasIMG[0].getAttribute("src");
        var canvasMousedown = canvasIMG[0].getAttribute("onmousedown");       
	    var aSwitch = document.getElementById("aSwitch");		
		aSwitch.setAttribute("src",canvasSrc);
		aSwitch.setAttribute("onclick",canvasOnClick);
		} else {
			
			 var ProductImg = document.getElementById("ProductImg");
			 var prImgTDIMG = ProductImg.getElementsByTagName("IMG");
			 var prImgTDonclick = prImgTDIMG[0].getAttribute("onclick");
			 var aSwitch = document.getElementById("aSwitch");
			 aSwitch.setAttribute("onclick",prImgTDonclick);
		
		
		}	
    // popup end
}

