/* JavaScript Document

*/

/*Opens the business card popup*/
var newwindow;
function poptart(url)
{
	newwindow=window.open(url,'name','height=200,width=325,left=650,top=350,resizable=no,scrollbars=no,toolbar=no,status=no');

	if (window.focus) {newwindow.focus()}
}
/* End Popup*/


/*Scroller    Created by: Mr J :: http://www.huntingground.net/
 */

 scrollStep=10
 

timerLeft=""
timerRight=""

function toLeft(id){
 document.getElementById(id).scrollLeft=0
}

function scrollDivLeft(id){
 clearTimeout(timerRight)
 document.getElementById(id).scrollLeft+=scrollStep
 timerRight=setTimeout("scrollDivLeft('"+id+"')",10)
}

function scrollDivRight(id){
 clearTimeout(timerLeft)
 document.getElementById(id).scrollLeft-=scrollStep
 timerLeft=setTimeout("scrollDivRight('"+id+"')",10)
}

function toRight(id){
 document.getElementById(id).scrollLeft=document.getElementById(id).scrollWidth
}

function stopMe(){
 clearTimeout(timerRight)
 clearTimeout(timerLeft)
}



