/* JaSonya Scripts
	Miscellaneaous scripts for the web page
	May eventually be parsed out to specific files  */

function bar_from_image(image, number) {
/* takes an image and makes a bar from it 
	by repetition of the image */
	width = ""
	height = ""
	if (arguments[2]) width = " WIDTH=" + arguments[2];
	if (arguments[3]) height = " HEIGHT=" + arguments[3];
	
	for (i=0;i<number;++i) {
		bar_text = "<IMG SRC=\"" + image + "\" BORDER=0 HSPACE=0 VSPACE=0"
		bar_text = bar_text + width + height + ">"
		document.write(bar_text)
	}
}

