<!--
// Break Out of Frames ----------------------------------- //
if (window != top)
top.location.href=location.href


// Image pop ups ----------------------------------------- //
function popup(url,name,height,width) {
	var newWindow = window.open(url, name, "height="+height+",width="+width+",toolbar=no,menubar=no,scrollbars=yes,resizable=yes,status=no");
	newWindow.focus();
	return newWindow;
}


// Show Progress of Upload ------------------------------ //
function showProgress() {
	document.getElementById('uploadprogress').style.display = 'block';    
   	return true;
}

// Pop Up Demo Message Function ------------------------- //
function alertText(txt)
{
	alert(txt);
}
// -->