/*function changeImages(obj, image)
{
	document[obj].src = image;
}
*/
function changeImages(obj, image) {
	/*
	document.all(obj).src = image;
	document[obj].src = image;
	*/
	//var el = document.all? document.all(obj): document[obj];
	var el = document.getElementById(obj);
	el.src = image;
}

function MM_openBrWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}
function openpopup(popurl){
    window.open(popurl,"","width=480,height=550,status=no,menubar=no,scrollbars=no");
    return false;
}
function openpopuplarge(popurl) {
    window.open(popurl,"","width=800,height=600,status=yes,menubar=yes,scrollbars=yes");
    return false;
}
