function menuOver (obj)
{
	obj.className = "border_darker_main font_subheading menu-over color_darker_main";
}
function menuOut (obj)
{
	obj.className = "border_darker_main font_subheading menu color_base";
}
function moveLast(frm)
{
    if(frm.currentPage)
    {
        frm.currentPage.value =parseInt( frm.totalPage.value);
        frm.submit();
    }
}
function moveFirst(frm)
{
    if(frm.currentPage)
    {
        frm.currentPage.value = 1;
        frm.submit();
    }
}
function movePrevious(frm)
{

    if(frm.currentPage)
    {
        frm.currentPage.value = parseInt(frm.currentPage.value) - 1;
        frm.submit();
    }
}
function moveNext(frm)
{
    if(frm.currentPage)
    {
        frm.currentPage.value = parseInt(frm.currentPage.value) + 1;
        frm.submit();
    }
}

function openWin(p, w, h, properties)
	{
	properties = "directories=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0";
	if(p != "")
		{
		w = (w <= 0 ? 300 : w);
		h = (h <= 0 ? 300 : h);
		var x = (screen.width - w)/2;
		var y = (screen.height - h)/2;
		if(properties != '')
			properties = "Top=" + y + ", Left=" + x + ", width=" + w + ", height=" + h + ", " + properties;
		else
			properties = "Top=" + y + ", Left=" + x + ", width=" + w + ", height=" + h;
		var win = window.open(p, "", properties);
		return win;
		}
	}
