﻿var pop=null;
function popFrdSet(popUrl,width,height)
{
	pop = new Popup({ contentType:1, isReloadOnClose:false,isHaveTitle:false, width:width, height:height});
	//pop.setContent("title", "设置最新动态");
	pop.setContent("contentUrl", popUrl);
	pop.build();
	pop.show();
	return false;	
}

function popFrdSetTitle(title,popUrl,width,height)
{
   pop = new Popup({ contentType:1, isReloadOnClose:false,isHaveTitle:true, width:width, height:height});
	pop.setContent("title", title);
	pop.setContent("contentUrl", popUrl);
	pop.build();
	pop.show();
	return false;	
}

function g_close_pop()
{
	pop.close();
}
