
function resizePhoneImage()
{
    var phoneImage = document.getElementById('imgPhonePicture');
    if(phoneImage.width > 220)
    {
        newheight = parseInt(phoneImage.height * (220 / phoneImage.width));
        phoneImage.width = 220;
        phoneImage.height = newheight;
    }
}
	
