function funOpen(pPage, pHeight, pWidth) {
	var iHeight	= 300;
	var iWidth	= 400;
	if (pHeight != "") {
		iHeight	= pHeight;
	}
	if (pWidth != "") {
		iWidth	= pWidth;
	}
	var objWindow	= window.open(pPage, "", "width="+iWidth.toString()+",height="+iHeight.toString()+",menubar=no,toolbar=no,titlebar=no,directories=no,status=no,scrollbars=no,statusbar=no");
}