﻿// JScript File
function rotateImage(controlName, imagePath)
{
    document.getElementById(controlName).src = imagePath;
}
