//---------------------- [ TEXT FUNCTION ] ------------------

window.onload = ActivateFlash

function ActivateFlash()
{
   var objects = document.getElementsByTagName("object");
   for (var i = 0; i < objects.length; i++)
   {
      objects[i].outerHTML = objects[i].outerHTML;
   } 
}
		
function ClearInput(obj){ 
	if(obj.value=='[Click to Change]')obj.value=""; 
}

//--------------------- [ EXPAND / COLLAPSE ] ----------------

function ExpandIt(obj){
	var item;
	item = document.getElementById(obj)
	item.style.display = "block";
}

function CollapseIt(obj){
	var item;
	item = document.getElementById(obj)
	item.style.display = "none";
}

function ExpandCollape(obj){
	var item;
	item = document.getElementById(obj)
	if( item.style.display != "none")
		item.style.display = "none";
	else
		item.style.display = "block";
}

//--------------------- [ POPUP WINDOW ] ----------------

function BringUpWindow(webpage,hWidth,hHieght) {
     var url = webpage;
     var hDesc = "width=" + hWidth + ",height=" + hHieght + ",resizable=no,scrollbars=yes,status=no,toolbar=no,titlebar=no,dependent=yes";
     var hWnd = window.open(url,"iNetDevs_Portal_System",hDesc);
     if (hWnd != null) {     if (hWnd.opener == null) { hWnd.opener = self; window.name = "home"; hWnd.location.href=url; } }
}