// JavaScript Document
function gocat()
{
	var catid = document.getElementById("category").options[document.getElementById("category").selectedIndex].value;
	document.location.href='?content=article_list&cid='+catid;
}

function gocat2()
{
	var catid = document.getElementById("category").options[document.getElementById("category").selectedIndex].value;
	document.location.href='?content=produk_list&cid='+catid;
}

function gocat3()
{
	var catid = document.getElementById("category").options[document.getElementById("category").selectedIndex].value;
	document.location.href='?content=kaos_list&cid='+catid;
}

function hackCSS()
{
    var a = document.getElementById("table-row1");
    var b = document.getElementById("table-row2");
	var c = document.getElementById("table-row3");
	var d = document.getElementById("table-row4");

	var height_a = a.offsetHeight;
	var height_b = b.offsetHeight;
	var height_c = c.offsetHeight;
	
	var max_height = Math.max(height_a,height_b,height_c);
	
	d.style.height = max_height + "px";
}

function submitit()
{
	document.forms['confirm'].submit();
}

function set_loading(wd)
{
	var loads = document.getElementById('autoresponloading');
	loads.style.width = wd+'%';
	loads2.innerHTML = 'Calculating data....'+wd+'%';
}

