function enlarge_image(url, width, height, name)
{
	var w = window.open('', '', 'width=' + width + ', height=' + height);
	var html = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">';
	html += '<html><head><base href="http://hitech-gildia/"><title></title><style type="text/css">body { margin: 0px; padding: 0px; }</style></head><body><img src="' + url + '" width="' + width + '" height="' + height + '" border="0"></body></html>';
	w.document.open();
	w.document.write(html);
	w.document.close();
	return false;
}

function simplylarge_image(url)
{
	var w = window.open('', '', 'width=200, height=200, resizable=yes,toolbar=no, menubar=no,scrollbars=no,location=no,  directories=no, status=no, ');
	var html = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">';
	html += '<html><head><base href="http://hitech-gildia/"><title></title><style type="text/css">body { margin: 0px; padding: 0px; }</style><script type="text/javascript" src="javascripts/enlarge_image.js"></script></head><body><img onload="pro();" id="img" src="' + url + '" border="0"></body></html>';
	w.document.open();
	w.document.write(html);
	w.document.close();
	return false;
}
function pro() {
	a = document.getElementById('img');
	window.resizeTo(a.width + 10 , a.height+35);
}
