/*------------------------------------------------------------------------
# DANG DUC NGUYEN
# ------------------------------------------------------------------------
# 
-------------------------------------------------------------------------*/

function popwindow(pop,width,height)
{
	var url = pop;
	var wd = width;
	var he = height;
	window.open(url,"","toolbar=0,menubar=0,scrollbars=yes,resizable=yes,width=" + wd +",height=" + he + ";")
}

