/*
    © Total IT Support Services Ltd 2007
    NorthamtonGun external JavaScript functions
		Last updated 14-03-07
*/

// Image swapper
function swapImg(imgName,newImg) {
	if (document.images) {
		document[imgName].src = eval(newImg + ".src")
	}
}

// New browser windows with customizable size
function newWin(URL,w,h) {
	newWin=window.open(URL,'name',"width="+w+",height="+h+",left=10,top=10");
	newWin.focus()
}

// Text expander
function exp(divId) {
	if (divId.style.display == 'none') {
		divId.style.display = "";
	}
	else {
		divId.style.display = 'none';
	}
}

// Text de-expander
function de_exp(divId) {
	if (divId.style.display == '') {
		divId.style.display = "none";
	}
}
