//-----------------------------------------------------------------------------
var Win, newWin;
function fullWin(url,name,width,height) {
  Win = window.open(url,name,'width=' + width +',height=' + height + ',resizable=1,scrollbars=yes,toolbar=yes,menubar=yes,top=0,left=0,status=yes,location=yes');
	if (Win) {
		Win.focus();
	}
}

//-----------------------------------------------------------------------------
function miniWin(url,name,width,height) {
	var _left = (screen.width - width)/2;
	var _top = (screen.height - height)/2;
	newWin = window.open(url,name,'width=' + width + ',height=' + height + ',left=' + _left + ',top=' + _top + ',location=no,menubar=no,resizable=1,scrollbars=yes,status=no,toolbar=no');
	if (newWin) {
		newWin.focus();
	}
}

//-----------------------------------------------------------------------------
function dialogWin(url,name,width,height) {
	var _left = (screen.width - width)/2;
	var _top = (screen.height - height)/2;
	newWin = window.open(url,name,'width=' + width + ',height=' + height + ',left=' + _left + ',top=' + _top + ',location=no,menubar=no,resizable=0,scrollbars=no,status=no,toolbar=no');
	if (newWin) {
		newWin.focus();
	}
}