	
function gchangeover(obj)
{
// WScript.Echo ("Developed By A.K.M Khurshed Ullah (Bulet)");
	obj.style.color="red"
	obj.style.fontSize="20pt"
}
function gchangeout(obj)
{
	obj.style.color="4E1B80"
	obj.style.fontSize="15pt"	
}

function gtxtover(obj)
{
	obj.style.color="#ffffff"
	obj.style.fontSize="8pt"
	obj.style.cursor='hand'
}
function gtxtout(obj)
{
	obj.style.color="black"
	obj.style.fontSize="7pt"	
}

function gsmsg(str)
{
	alert(str)
}

function gsblink()
{
	
	var strVariable = "This is a string object";
	strVariable = strVariable.blink( );
}
function gover(obj)
{
obj.style.backgroundColor='#FF0000'
obj.style.borderWidth='1'
obj.style.textDecoration='underline'
obj.style.fontColor='red'
//obj.style.borderStyle ='Dotted'
obj.style.borderColor='blue'
}

function gout(obj)
{
obj.style.borderWidth='0'
obj.style.borderColor='#ffffff'
obj.style.textDecoration='none'
obj.style.fontColor='black'
//obj.style.borderStyle ='solid'
obj.style.backgroundColor='transparent'
//'#24CAE7'


}
function greqchange(obj,indx)
{
	switch(indx)
	{
	case 0:
	obj.style.backgroundColor='#E5ACF9'
	break
	case 1:
	obj.style.backgroundColor='#91919F'
	break
	}

}
function greqout(obj)
{
	obj.style.backgroundColor='#000000'

}
function gsgo(strpth)
{
	location.href=strpth
}
