function CheckAlert() {
	var note="hello";
	if (st == 1) {
		note="Lost pet in our area";
	} else {
		var randomnumber=Math.floor(Math.random()*11)
	var m = new Array();
	m[1] = "The reason a dog has so many friends is that he wags his tail instead of his tongue. -Anonymous";
	m[2] = "Don't accept your dog's admiration as conclusive evidence that you are wonderful. -Ann Landers";
	m[3] = "A dog is the only thing on earth that loves you more than he loves himself. -Josh Billings";
	m[4] = "The average dog is a nicer person than the average person. -Andy Rooney";
	m[5] = "Women and cats will do as they please, and men and dogs should relax and get used to the idea. -Robert Heinlein";
	m[6] = "Dogs are not our whole life, but they make our lives whole. - Roger Caras";
	m[7] = "There is no snooze button on a cat who wants breakfast. - Anonymous ";
	m[8] = "Cats seem to go on the principle that it never does any harm to ask for what you want. - Joseph Wood Krutch";
	m[9] = "Dogs see people as companions; cats see people as staff.";
	m[10] = "There is something about the presence of a cat. that seems to take the bite out of being alone.";
	m[0] = "Thousands of years ago, cats were worshipped as gods. Cats have never forgotten this." ;
		note= m[randomnumber];
	}
	var notice = "<font class=ital>" + note + "</font>";

	document.write(notice);
}


