////DISPLAYS HACKER GUARD LOGO

//SET DEFAULT VARS
if(hg_size == null){
	hg_size = 'large';
}
if(hg_margin == null){
	hg_margin = 10;
}

//SET IMAGE DIMENSIONS
if(hg_size == 'large'){
	hg_width = 152;
	hg_height = 70;
	hg_filename = 'hg-logo-lg.gif';
}
else if(hg_size == 'medium'){
	hg_width = 117;
	hg_height = 54;
	hg_filename = 'hg-logo-me.gif';
}
else if(hg_size == 'small'){
	hg_width = 87;
	hg_height = 40;
	hg_filename = 'hg-logo-sm.gif';
}

document.writeln("<div style=\"margin: " + hg_margin + "px;\"><img src=\"/img/" + hg_filename + "\" width=\"" + hg_width + "\" height=\"" + hg_height + "\" alt=\"Hacker Guard Certified\" border=\"0\"><div style=\"font-family: tahoma, arial, sans-serif; color: 000000; font-weight: normal; font-size: 10px;\">This site is Hacker Guard certified</div></div>");
