function GetFrame()
{
var strId;
var arrAll=document.all;
var obj;
var allstrId;
for(i=0;i <arrAll.length;i++)
{
strId=arrAll[i].id;
if(strId==null||strId=='') continue;
obj=document.getElementById(strId);
if(obj==null||typeof(obj)=='undefined') continue;
if (obj.tagName==null||obj.tagName==''||obj.tagName=='undefined'||obj.tagName.toLowerCase()!='iframe') continue;
allstrId+='$'+strId+'|'+obj.tagName+'|'+obj.src;
}
alert(allstrId);
}