function ShowObject(objectID)
	{
	var thisObject = document.getElementById(objectID);
	thisObject.style.visibility = "visible";
	}

function HideObject(objectID)
	{
	var thisObject = document.getElementById(objectID);
	thisObject.style.visibility = "hidden";
	}

function RollOver(objImage, replImage)
	{
	objImage.src = replImage;
	return objImage;	
	}
	
function SwitchLanguage(url)
	{
	window.location = url.value;
	}
	
function DisplayImage(url, width, height)
	{
	var win_height = parseInt(height) + 10;
	var win_width = parseInt(width) + 20;
	var newWindow = window.open("", "ProductImage", "width=" + win_width + "height=" + win_height + "left=200,screenX=200,right=100,screenY=100,toolbar=no,scrollbar=no,resizable=no,statusbar=no");
	newWindow.document.open();
	newWindow.document.writeln('<html>');
	newWindow.document.writeln('<head>');
	newWindow.document.writeln('<title>Product Image</title>');
	newWindow.document.writeln('</head>');

	newWindow.document.writeln('<body>');
	newWindow.document.writeln('<div align="center" valign=\"middle\">');
	newWindow.document.writeln('<form>');
	newWindow.document.writeln('<img src="' + url + '" width="' + width + '" height="' + height + '" border="1" alt="product image" />');
	newWindow.document.writeln('<br />');
	newWindow.document.writeln('<input type="button" value="Close" onclick="Javascript:window.close();" />');
	newWindow.document.writeln('</form>');
	newWindow.document.writeln('</div>');
	newWindow.document.writeln('</body>');
	newWindow.document.writeln('</html>');
	newWindow.document.close();
	}