// JavaScript Document

/* DESIGNED TO REMOVE ATTRIBUTES FROM IMG TAG */
window.onload = function(){
	for(i=0; i<document.getElementsByTagName('img').length; i++){
		document.getElementsByTagName('img')[i].removeAttribute('vspace');
		document.getElementsByTagName('img')[i].removeAttribute('hspace');
	}
	
}

