function showImage(path,w,h){

	h = h + 20;
	w = w + 20;
	sb = 0;

	if (w > 990){
		w = 990;
		sb = 1;
	}
	if (h > 720){
		h = 720;
		sb = 1;
	}
	if (sb == 1 & w <= 990){
		w = w + 20;
	}
	if (sb == 1 & h <= 720){
		h = h + 20;
	}	
	
     	l = (screen.width - w) / 2;
     	t = (screen.height - h) / 2;

	path = "image.php?path=" + path;
	win = "top="+t+", left="+l+", toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+ sb +",resizable=0,width="+ w +",height="+ h; 

	shodokanImage = window.open(path, "ShodokanImage", win);
	shodokanImage.resizeTo(w + 20,h + 70);
	shodokanImage.focus();
	
}
function showVideo(){

	h = 500;
	w = 500;
	sb = 0;

     	l = (screen.width - w) / 2;
     	t = (screen.height - h) / 2;

	path = "video.php?video=Unicredit";
	win = "top="+t+", left="+l+", toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+ sb +",resizable=0,width="+ w +",height="+ h; 

	shodokanVideo = window.open(path, "ShodokanVideo", win); 	
	shodokanVideo.focus();
	
}
function showInfo(box,id){

	box = document.getElementById(box);
	id = document.getElementById(id);
	
    	if(box.checked == true){
    		id.style.visibility = "hidden";
    	}else{
		id.style.visibility = "visible";
	}
	
}

var formHTML = new Array();

function selectDate(id){
	
	for (i = 1; i <= 8; i++){  
		if (document.getElementById('select'+ i).innerHTML != ''){
			formHTML[i] = document.getElementById('select'+ i).innerHTML;
		}
		document.getElementById('select'+ i).innerHTML = '';
		document.getElementById('date'+ i).style.display = 'none';
	}
	if (id == ''){
		document.getElementById('send').style.visibility = 'hidden';
	}else{
		document.getElementById('select'+ id).innerHTML = formHTML[id];
		document.getElementById('date'+ id).style.display = '';
		document.getElementById('send').style.visibility = 'visible';
	}
	
}	

