
function Imageswap(name,image) {
	document.getElementById(name).src=image;
}

function ImageContentswap(name,image,id,content) {
	document.getElementById(name).src=image;
	document.getElementById(id).innerHTML=content;
}

function bgColorswap(id,color) {
	document.getElementById(id).bgColor=color;
}
function Imageopen(image,name) {
	window.open(image,name,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=300,height=300,left=100,top=100");
/*	newWindow.focus();*/
/*	window.open(image,name,"toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=100,height=100"); */

}
function Imageopenx(image,name,zokusei) {
	window.open(image,name,zokusei);
}
