function showDialog(url, width, height)
{
	return showWindow(url, false, false, false, false, false, false, true, true, width, height, 0, 0);
}
function showWindow(url, isStatus, isResizeable, isScrollbars, isToolbar, isLocation, isFullscreen, isTitlebar, isCentered, width, height, top, left)
{
	if (isCentered)
	{
		top = (screen.height - height) / 2;
		left = (screen.width - width) / 2;
	}

	open(url, '_blank', 'status=' + (isStatus ? 'yes' : 'no') + ','
	+ 'resizable=' + (isResizeable ? 'yes' : 'no') + ','
	+ 'scrollbars=' + (isScrollbars ? 'yes' : 'no') + ','
	+ 'toolbar=' + (isToolbar ? 'yes' : 'no') + ','
	+ 'location=' + (isLocation ? 'yes' : 'no') + ','
	+ 'fullscreen=' + (isFullscreen ? 'yes' : 'no') + ','
	+ 'titlebar=' + (isTitlebar ? 'yes' : 'no') + ','
	+ 'height=' + height + ',' + 'width=' + width + ','
	+ 'top=' + top + ',' + 'left=' + left);
}
function displayInfo(info)
{
	if (info == 'trans')
		showWindow('http://vdict.com/?autotranslation', true, true, true, true, true, false, true, true, 800, 800, 0, 0);
	if (info == 'weather')
		showDialog('http://www3.tuoitre.com.vn/Transweb/Weather.aspx', 550, 565);
	if (info == 'forex')
		showDialog('http://www.eximbank.com.vn/vietnam/exchange.aspx', 300, 300);
	if (info == 'gold')
		showDialog('http://www3.tuoitre.com.vn/transweb/giavang.htm', 450, 220);
	if (info == 'tvguide')
		showWindow('http://www.tuoitre.com.vn/Tianyon/Index.aspx?ChannelID=385', true, true, true, true, true, false, true, true, 800, 800, 0, 0);		
	if (info == 'lottery')
		showWindow('http://www.xosobinhduong.com.vn/Forms/xemkq_tt.aspx', true, true, true, true, true, false, true, true, 800, 600, 0, 0);		
	if (info == 'stock_ho')		
		showWindow('http://priceboard5.sbsc.com.vn/priceboard/hoUser.do', true, true, true, true, true, false, true, true, 800, 800, 0, 0);
	if (info == 'stock_hn')		
		showWindow('http://priceboard5.sbsc.com.vn/priceboard/haUser.do', true, true, true, true, true, false, true, true, 800, 800, 0, 0);
}