// JavaScript Document

	function window_onLoad()
	{
		var e = document.getElementById('dmpremamanvaluepacks');
		if (e) e.style.display = 'none';
	}

	function onPremanmanValuepackSelectClick()
	{
		var e = document.getElementById('dmpremamanvaluepacks');
		if (e)
		{
			if (e.style.display == 'none') e.style.display = '';
			else e.style.display = 'none';
		}
	}

	if (window.addEventListener)
		window.addEventListener("load", window_onLoad, false);
	else if (window.attachEvent)
		window.attachEvent("onload", window_onLoad);
	else if (document.getElementById)
		window.onload = window_onLoad;
