

/* image mouse over setting */
function swapimg(obj) {
	if(obj.src.match(/_f2.(jpg|gif|png)/)) {
		obj.src = obj.src.replace('_f2', '');
	} else {
		obj.src = obj.src.replace(/\.(jpg|gif|png)$/, "_f2.$1");
	}
}


/* open movie */
function func_open_movie(id){
	document.getElementById(id).style.display = 'block';
}

function func_close_movie(id){
	document.getElementById(id).style.display = 'none';
}

function func_open_shots(theURL,winName,features){
  window.open(theURL,winName,features);
}


