// JavaScript Document

function opensubwin(src)
{
	src = "/products/gtmkt/images/" + src + ".html";
	var ow;
	ow = window.open(src, "", "toolbar=no,location=no,resizable=no,scrollbars=yes");
	ow.focus();
}

function wResize()
{
	var images = document.getElementsByTagName("img");
	if(! images || 0 == images.length)
		return false;

//	alert(document.documentElement.clientHeight);
	var width = images[0].width + 4;
	if(screen.availWidth < width)
		return false;
	document.body.width = width;
	window.resizeTo(width + 30, document.documentElement.clientHeight);
}
