﻿<!--
function openWindow(url,index)
	{
		if(index==0)
		{
		}
		else
		{
			window.open(url,"","")
		}
	}
// -->

    function aspnetFormOnClick(sign)
    {
        var oSource = window.event.srcElement ;
        clickedobject = oSource.name;
        if(sign == 1 )
        {
            document.getElementById(clickedobject).style.textDecoration = 'underline';
        }
        else if (sign == 0)
        {
            document.getElementById(clickedobject).style.textDecoration = 'none';
        }
    }