shown=''
function OpenFile(url) {
if( shown=='' || shown.closed) {
	shown=window.open(url,'OpenFile','scrollbars=no,status=yes, high,width=350,height=100');
}
else{
	shown.close();
	shown=window.open(url,'OpenFile','scrollbars=no,status=yes, high,width=350,height=100');
}
}