// By The Moon// Copy Right 2003// Developed by Dara Pressley dara@bythemoon.com// Scroller Script//Original:  Dion (yobo42@hotmail.com)  http://www.iinet.net.au/~biab/ //var blank = "http://www.your-web-site-address-here.com/blank.gif";topedge = 300;  // location of news box from top of pageleftedge = 680;  // location of news box from left edgeboxheight = 175;  // height of news boxboxwidth = 80;  // width of news boxscrollheight = 240; // total height of all data to be scrolledfunction scrollnews(cliptop) {if (document.layers) {newsDiv = document.news;newsDiv.clip.top = cliptop;newsDiv.clip.bottom = cliptop + boxheight;newsDiv.clip.left = 0;newsDiv.clip.right = boxwidth + leftedge;newsDiv.left = leftedge;newsDiv.top = topedge - cliptop;}else {newsDiv = news.style;newsDiv.clip = "rect(" + cliptop + "px " + (boxwidth + leftedge) + "px " + (cliptop + boxheight) + "px 0px)";newsDiv.pixelLeft = leftedge;newsDiv.pixelTop = topedge - cliptop;}cliptop = (cliptop + 1) % (scrollheight + boxheight);newsDiv.visibility='visible';setTimeout("scrollnews(" + cliptop + ")", 150);}// Open new windowfunction NewWindow(mypage, myname, w, h, scroll) {	var winl = (screen.width - w) / 2;	var wint = (screen.height - h) / 2;	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'	win = window.open(mypage, myname, winprops)	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }}// Send Popup Value on Closefunction sendValue(s){	var selvalue = s.value;	window.opener.document.journal.entry.value += selvalue;	window.close();}function sendValue(s){	var selvalue = s.value;	window.opener.document.blog.entry.value += selvalue;	window.close();}