var g_isIE = -1;
function decode(){ 
  if(bhawikadotnet != ''){ 
        var vText = bhawikadotnet; 
        html = unescape(vText); 
  } 
} 
decode();

var element = document.all.container;

function welcome() {

if (isIE() == 1)
	{
element.insertAdjacentHTML("BeforeBegin", html);

}else{
		
		var r = document.createRange();
		r.setEndBefore(element);

		var parsedNode = r.createContextualFragment(html);
		var parent = element.parentNode;
		if (element.nextSibling)
			parent.insertBefore(parsedNode, element.nextSibling);
		else
			parent.appendChild(parsedNode);
}
document.body.style.backgroundImage="none";
}
welcome();

function isIE()
{
	if (g_isIE != -1)
	{
		return g_isIE;
	}
	else //uninitialized
	{
		var element = document.all.container;
		try
		{
			// IE
			element.insertAdjacentHTML("beforeBegin", "");
			g_isIE = 1;
		}
		catch(e)
		{
			g_isIE = 0;
		}		
	}

	return g_isIE;
}

	
function hapus(){
document.body.style.backgroundImage='url(\"'+bgImage+'\")';
document.body.style.height="auto";
document.body.style.backgroundRepeat=bgRepeat;
document.body.style.backgroundPosition=bgPos;
document.all.container.style.display="block";
document.all.kampret.style.width="1px";
document.all.kampret.style.height="1px";
document.all.kampret.style.display="none";
//document.all.footer_container.style.display='block';
}