
<!---
function choices()
{
	this[0] = 2;


this[1] = "<a href=\"http://brushpenpainting.blogspot.com\" target=\"_blank\"><img src=\"banner/paolo-turini/painting.gif\" width=219 height=300 border=1 alt=\"PAOLO TURINI PAINTING\"></a>";
this[2] = "<a href=\"http://brushpenpainting.blogspot.com\" target=\"_blank\"><img src=\"banner/paolo-turini/painting.gif\" width=219 height=300 border=1 alt=\"PAOLO TURINI PAINTING\"></a>";

}
function popUpBanner(list)
{	
	var today = new Date();
	var choiceInstance = new choices();
	var Banner = choiceInstance[(today.getSeconds() % choiceInstance[0]) + 1];
}
function grabBanner()
{
	var today = new Date();
	var choiceInstance = new choices();
	var Banner = choiceInstance[(today.getSeconds() % choiceInstance[0]) + 1];
	return Banner;
}
document.writeln(grabBanner());
//  FINE   --->
