function resizeWindow() {
 if (document.images) {
  if (pic_window.document.images.length == 1) {
  if (document.layers) pic_window.resizeTo(pic_window.document.images[0].width+20,pic_window.document.images[0].height+20)
// NN
   else if (document.all) pic_window.resizeTo(pic_window.document.images[0].width+15,pic_window.document.images[0].height+15)
// IE
		         }else
           setTimeout('resizeWindow()',1000);
}}

									     

function show_pic (pic,nr) {
if (pic!="none") {
pic_window = window.open ('','nr','resizable=1,location=0,directories=0,status=0,menubar=0,scrollbars=0,toolbar=0,width=100,height=50');
pic_cont = '<html><head><title>' + nr + '</title></head>';
pic_cont += '<body leftmargin="0" topmargin="0">';
//if (text!=''){ pic_cont += '<center>' + nr + '  ' + text +'</center>';}
pic_cont += '<DIV ALIGN=CENTER><TABLE BORDER=1 CELLSPACING=0 CELLPADDING=0 VALIGN="MIDDLE"><TR><TD>';
pic_cont += '<IMG SRC=" '+pic + '" border=0 align=center ALT="'+nr+'">';
pic_cont += '</TD></TR></TABLE></DIV>';
pic_cont += '</body></html>';
pic_window.document.writeln(pic_cont);
pic_window.document.close();
resizeWindow();
pic_window.focus();
}}


function rand(number){
return Math.ceil(Math.random()*number);
}

function random_picture()
{ 
// call: random_picture("xs11.jpg","xs11.gif","Yamaha XS 11","99","134","winter_honda.jpg","winter_honda.gif","Honda Avril 2000","159","111","winter_bmw.jpg","winter_bmw.gif"," ","159","111");

var anz = (arguments.length);
anz = anz / 5; 
var which = rand(anz);
document.write ('<A HREF="' + arguments[(which-1) * 5 ] + '"><IMG SRC="');
document.write (' ' + arguments[(which-1) * 5 +1] + '" ALT="' + arguments[(which-1) * 5 + 2 ] + '" HSPACE=10 VSPACE=10 BORDER=2  ALIGN=CENTER><\/A>');
}






