<!--// hide contents
function openWindow(url) {
	if(document.layers || document.all || document.getElementById) {
		var window_left = (screen.width-1024)/2;
		var window_top = (screen.height-786)/2;
		popUp = window.open(url,'OpenWindow','resizable=no, menubar=no ,scrollbars=yes ,status=no ,height=700,width=558,left=' + window_left + ',top=' + window_top + '')
	}
}
// end hiding contents -->

function SearchAjax(kat,tipe){
  eval("location='http://www.detikshop.com/autosearch/"+tipe+"/"+kat+"'");
}

function LoadFormku(TIPE) {
	var url2 = "http://www.detikshop.com/index.php?fa=detik.caridata&tipe="+TIPE;
	if(window.XMLHttpRequest) {
		req2 = new XMLHttpRequest();
	} else if(window.ActiveXObject) {
		req2 = new ActiveXObject("Microsoft.XMLHTTP");
	}
	req2.open("GET", url2, true);
	req2.onreadystatechange = callback2;
	req2.send(null);
}
	
function callback2() {
	obj2 = document.getElementById("subjudul");
	
	if(req2.readyState == 4) {
		if(req2.status == 200) {
			response2 = req2.responseText;
			obj2.innerHTML = response2;
			//fade(0);
		} else {
			alert("There was a problem retrieving the data:\n" + req.statusText);
		}
	}
}