// JavaScript Document
function Showhid(intSts)
{
	
	if (intSts == 1)
	{
		 window.document.getElementById("screen").style.visibility = 'visible';
		 window.document.getElementById("screen").style.position   = 'static';
		 window.document.getElementById("embroid").style.visibility  = 'hidden';
		 window.document.getElementById("embroid").style.position    = 'absolute';
	}
	
	if (intSts == 2)
	{
		 window.document.getElementById("embroid").style.visibility = 'visible';
		 window.document.getElementById("embroid").style.position   = 'static';
		 window.document.getElementById("screen").style.visibility  = 'hidden';
		 window.document.getElementById("screen").style.position    = 'absolute';
	}
}

