//------ Show/Hide Item Boxes -------------
function boxShow(boxFor){
	document.getElementById(boxFor).style.display = "block";
	document.getElementById('min-'+boxFor).style.display = "none"; }
function boxHide(boxFor){
	document.getElementById(boxFor).style.display = "none";
	document.getElementById('min-'+boxFor).style.display = "block"; }
//------ Clear Input Text -------------
function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value = ""
} 
function fillText(thefield){
	if (thefield.value=='')
	thefield.value = thefield.defaultValue
}
//------ Pop Up -------------
var childWin;
function closeWin(){
	if (childWin){
		if(!childWin.closed){
			childWin.close();
		}
	}
}
function childCookie(){
	if (childWin){
	  if(childWin.closed){
	 	document.cookie='childWin=close; expires=Fri, 27 Jul 2019 02:47:11; path=/';
	  }
	}
}
interval = setInterval('childCookie()',100);
function popUp(strURL,strType,strHeight,strWidth) {
	closeWin();
	var strOptions="";
	if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
	if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
	if (strType=="elastic") strOptions="scrollbars,resizable,height="+strHeight+",width="+strWidth;
	childWin = window.open(strURL, 'TailorMadeForm', strOptions);
	document.cookie='childWin=open; expires=Fri, 27 Jul 2019 02:47:11; path=/';
	childWin.focus();
}
