function showFilePrices ()
{
	document.getElementById ('fileprices').style.display = 'block';
	setTimeout ("document.getElementById ('fileprices').style.display = 'none'", 5000);
}

function openWindow (openURL, openWidth, openHeight)
{
	add = ", left=" + Math.max ((screen.width - openWidth) / 2, 0) + ", top=" + Math.max ((screen.height - 64 - openHeight) / 2, 0);
	newWindow = window.open ("", "window1", "width=" + openWidth + ", height=" + openHeight + ", toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0" + add);
	newWindow.document.write ("<html>\n");
	newWindow.document.write ("<head>\n");
	newWindow.document.write ("\t<style>\n");
	newWindow.document.write ("\t\tbody {padding: 0;margin: 0;}\n");
	newWindow.document.write ("\t</style>\n");
	newWindow.document.write ("</head>\n");
	newWindow.document.write ("<body>\n");
	newWindow.document.write ("\t<img src=\"" + openURL + "\" />\n");
	newWindow.document.write ("</body>\n");
	newWindow.document.write ("</html>");
}

function changeInput (item, string)
{
	if (item.value == "")
	{
		item.value = string;
		item.style.color = "#999999";
	}
	else if (item.value == string)
	{
		item.value = "";
		item.style.color = "#000000";
	}
}

