// JavaScript Document
function checkImage(){
var divName = document.getElementById("printHeader");	
var logo = divName.getElementsByTagName("img");
if (logo[0].width > 650){
	logo[0].setAttribute("width","650");
}

	
}
if (window.attachEvent) window.attachEvent("onload", checkImage);
if (window.addEventListener) window.addEventListener("load",checkImage,false);
