<!--
function enlarge_image(file, w, h) {
	var img = window.open("",'video_win','width=' + w + ', height=' + h + ', resizable=no, status=yes, screenX=300, screenY=50');
	with(img.document) {
		write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
		write('<html xmlns="http://www.w3.org/1999/xhtml">');
		write('<head>');
		write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />');
		write('<title>Independent Audi &amp; VW Services Inc. Qualifications</title>');
		write('</head>');
		write('<body marginheight="0" marginwidth="0" topmargin="0" rightmargin="0" bottommargin="0" leftmargin="0">');
		write('<img src="' + file + '" width="' + w + '" height="' + h + '" alt="" />');
		write('</body>');
		write('</html>');
		close();
	}
	img.focus();
}
//-->
