
var NoOfQuotes = 2;
myDate = new Date();


function getQuote()
{
	seed = myDate.getSeconds()
	rand = (parseInt(seed) % NoOfQuotes) +1
	
	if(rand == 1)
	{
		document.write(" We provide web application to students and researchers who can easily get GIS map and data information without knowing GIS software");
	}
	if(rand == 2)
	{
		document.write(" We are a software engineering team in UMass Boston. iDataMap is a XML/SVG based mapping web server.");
	}
	return rand
	
}