function rand( min, max ) {
    if( max ) {
        return Math.floor(Math.random() * (max - min + 1)) + min;
    } else {
        return Math.floor(Math.random() * (min + 1));
    }
}

function showAd(num)
{
	if (num == 1)
	{
		document.write('<a href="http://www.dogproblems.com/whispering.cfm?affID=fdb143" target="_blank"><img align=top src="http://www.dogproblems.com/public/affiliate/images/18.gif" width="300" height="250" alt="click me" border=0></a>');
	}
	else if (num==2)
	{
		document.write('<a href="http://www.dogproblems.com/sl.cfm?affID=fdb143" target="_blank"><img align=top src="http://www.dogproblems.com/public/affiliate/images/16.gif" width="300" height="250" alt="click me" border=0></a>');
	}
	else if (num==3)
	{
		document.write('<a href="http://www.dogproblems.com/index.cfm?affID=fdb143" target="_blank"><img align=top src="http://www.dogproblems.com/public/affiliate/images/19.gif" width="300" height="250" alt="click me" border=0></a>');
	}
	else if (num==4)
	{
		document.write('<a href="http://www.dogproblems.com/index.cfm?affID=fdb143" target="_blank"><img align=top src="http://www.dogproblems.com/public/affiliate/images/21.gif" width="300" height="250" alt="click me" border=0></a>');
	}
}

showAd(rand(1,4));