/*
This function picks a random Ubersoft logo

*/
function RanPic()
{
	var randnum = Math.random();		  //  order in a new array
	rnum = Math.round(19 * randnum) + 1;
	document.write("<p></p>");	
	if (rnum==1)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner01.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==2)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner02.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==3)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner03.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==4)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner04.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==5)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner05.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==6)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner06.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==7)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner07.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==8)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner08.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==9)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner09.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==10)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner10.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==11)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner11.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==12)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner12.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==13)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner13.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==14)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner14.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==15)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner15.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==16)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner16.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==17)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner17.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==18)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner18.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==19)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner19.png' width='200' height='68' border='0'></a> ");
	}
	if (rnum==20)
	{
		document.write(" <a href='http://www.ubersoft.net/' target='_top'><img src='../HelpDeskbanner20.png' width='200' height='68' border='0'></a> ");
	}
	document.write("&nbsp;");
}


