var week_ename = new Array("Sun","Mon","Tue","Wed","Tus","Fri","Sat");
var month_ename = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");

var today = new Date();
year = today.getYear();
month = today.getMonth();
day = today.getDate();
week = today.getDay();

//根据弹出窗口的大小，获得窗口的居中位置
function getPosition(width,height)
{
	var leftPosition=0;
	var screenWidth=screen.availWidth;
	if(screenWidth>width)
	{
		leftPosition=(screenWidth-width)/2;
	}
	var topPosition = 0;
	var screenHeight = screen.availHeight;
	if(screenHeight > height)
	{
		 topPosition = (screenHeight - height)/2;
	}
	var returnValue = null;
	{
		returnValue = "top=" + topPosition + ",left=" + leftPosition + ",width=" + width + ",height=" + height;
	}
	return returnValue;
}

function view(functionid,detailid){
    var url = "inner.jsp?funcId=" + functionid + "&detailId=" + detailid;
    window.open(url,"_blank",getPosition(800,600,true)+"height=480,width=466,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no");
}


function viewindex(functionid,detailid){
    var url = "webpage/inner.jsp?funcId=" + functionid + "&detailId=" + detailid;
    window.open(url,"_blank",getPosition(800,600,true)+"height=480,width=466,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no");
}

function isNumber(str){
    if(isNaN(str) || str == "") return false;
    else return true;
}

