function toggle(target){
	if (target == "open"){
		document.getElementById("long").style.display='block';
		document.getElementById("short").style.display='none';
	}else{
		document.getElementById("long").style.display='none';
		document.getElementById("short").style.display='block';
	}
	
	

}
function toggle2(target){
	if (target == "open"){
		document.getElementById("long2").style.display='block';
		document.getElementById("short2").style.display='none';
	}else{
		document.getElementById("long2").style.display='none';
		document.getElementById("short2").style.display='block';
	}
	
	

}
function blank(path) {
mywindow = window.open(path,'mywindow','width=460,height=500,status=no,menubar=no,menu=no,resizable=yes,scrollbars=yes');

mywindow.focus();
return false;
}
