/** Iframe Adjust Function **/

var __IFADJ_POOL = new Map();
function IFADJRegister(id,fn)
{
    __IFADJ_POOL.put('cbf_'+id,fn);
}
function IFADJCALLBACK(id,w,h)
{
    var fn = __IFADJ_POOL.get('cbf_'+id);
    if(typeof fn == 'function'){
	try{
	fn(id,w,h);
	}catch(ex){
	    
	}
    }
}
