function imageSwitch(id, s) {
	var d = document;
	if (d.images) {
		d.images[id].src = s;
	}
}
function openWindow(page, title, w, h, scroll) {
 	var pop = window.open(page, title, 'toolbar=0, location=0, directories=0, status=1, menubar=0, scrollbars=' + scroll + ', width=' + w + ', height=' + h + ',resizable=1');
 	pop.focus();
}