//*******************************************
//POP-UP WINDOW
//*******************************************
function OpenBrWindow(theURL,winName,features) {
	Window = window.open(theURL,winName,features);
}

function toggle(img,src){
	var Img = document.getElementById(img);
	Img.src = src
}