<!--
//image preloader
function PI_preloadImages() {
	if (document.images){
		if(typeof(document.PI)=='undefined'){
			document.PI = new Object();
		}
		document.PI.loadedImages = new Array();
		var im= PI_preloadImages.arguments;
		for(i=0;i<im.length;i++){
			document.PI.loadedImages[i] = new Image();
			document.PI.loadedImages[i].src = im[i];
		}
	}
}

function swapImage(name,swap){
document.images[name].src=swap;
}

function popWin2(url){
	var botm = screen.height-410;

		win = window.open(url, "w","width=510,height=410,resizable,left=400,top="+botm);
		for(var i=botm; i>=50; i-=5){
			win.moveBy(0,-5);
		}
	win.focus();
}

function popWin(url){
	win = window.open(url, "w","width=510,height=410,resizable,left=400,top=50");
	win.focus();
}

//-->
