function show_giavang(width,height)
{
	//width="150px";
	//height="200px";
	//qcajax("http://www.saovangdatviet.org/QcCMS2.0/tools/giavang.php",callback);	
	document.write("<iframe style='width:" + width + "; height:" + height + "; text-align: justify; overflow-x:hidden; overflow-y:hidden;' frameborder='0'  allowtransparency='true' src='http://www.saovangdatviet.org/QcCMS2.0/tools/giavang.php'></iframe>");
}

function show_tigia(width,height)
{	
	//qcajax("http://www.saovangdatviet.org/QcCMS2.0/tools/tigia.php",callback);	
	document.write("<iframe style='width:" + width + "; height:" + height + "; text-align: justify; overflow-x:hidden; overflow-y:hidden;' frameborder='0'  allowtransparency='true' src='http://www.saovangdatviet.org/QcCMS2.0/tools/tigia.php'></iframe>");
}
function show_chungkhoan(width,height)
{
	//qcajax("http://www.saovangdatviet.org/QcCMS2.0/tools/chungkhoan.php",callback);	
	document.write("<iframe style='width:" + width + "; height:" + height + "; text-align: justify; overflow-x:hidden; overflow-y:hidden;' frameborder='0'  allowtransparency='true' src='http://www.saovangdatviet.org/QcCMS2.0/tools/chungkhoan.php'></iframe>");
}
function show_tinnong(width,height)
{
	//qcajax("http://www.saovangdatviet.org/QcCMS2.0/tools/tinnong_phapluat.php",callback);	
	document.write("<iframe style='width:" + width + "; height:" + height + "; text-align: justify; overflow-x:hidden; overflow-y:hidden;' frameborder='0'  allowtransparency='true' src='http://www.saovangdatviet.org/QcCMS2.0/tools/tinnong_phapluat.php'></iframe>");
}
function qcajax(url, callbackFunction){
	var request = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("MSXML2.XMLHTTP.3.0");
	request.open("get", url, false);
	request.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	request.onreadystatechange = function() {
		if (request.readyState == 4 && request.status == 200) {
			if (request.responseText){
				callbackFunction(request.responseText);
			}
		}		
	};
	request.send(null);
}

function callback(response)
{
	document.write(response);
}
